From c110de03939771ab9e4f12db21c71f8609ede102 Mon Sep 17 00:00:00 2001
From: Lan Hui <1348141770@qq.com>
Date: Fri, 11 Aug 2023 18:38:35 +0800
Subject: [PATCH] Better spacing.

---
 app/templates/userpage_post.html | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/app/templates/userpage_post.html b/app/templates/userpage_post.html
index c0e044e..a3eb9b6 100644
--- a/app/templates/userpage_post.html
+++ b/app/templates/userpage_post.html
@@ -20,7 +20,8 @@
     <title>EnglishPal Study Room for {{username}}</title>
 </head>
 <body>
-  <p>
+  <div class="container-fluid">
+  <p class="mt-md-3">
     <input type="button" id="btn-cancel-selection" value="取消勾选" onclick="toggleCheckboxSelection(false)" />
     <input type="button" id="btn-selection" value="全部勾选" onclick="toggleCheckboxSelection(true)" />
   </p>
@@ -44,5 +45,6 @@
             <script src="{{ js }}" ></script>
         {% endfor %}
     {% endif %}
+  </div>
 </body>
 </html>