diff --git a/templates/todolist.html b/templates/todolist.html index 2be69569..50f90aca 100644 --- a/templates/todolist.html +++ b/templates/todolist.html @@ -25,43 +25,46 @@
- -
- - -
-

[[${todo.class_name}]]

-
    - -
  • - - [[${data.content}]] -
  • -
    -
+
+ +
+
+

[[${todo.class_name}]]

+
    + +
  • + + [[${data.content}]] +
  • +
    +
+
-
- -
-
-

[[${todo.class_name}]]

-
    - -
  • - - [[${data.content}]] -
  • -
    - -
+ +
+
+ +
+
+

[[${todo.class_name}]]

+
    + +
  • + + [[${data.content}]] +
  • +
    +
+
-
- + +
+
@@ -79,7 +82,7 @@ display: flex; flex-direction: row; flex-wrap: wrap; - justify-content: center; + justify-content: space-between; margin: 16px 0 10px } @@ -93,13 +96,21 @@ padding: 0 } - #todolist-left { + #todolist-left-container, #todolist-right-container { + display: flex; + flex-direction: column; + justify-content: start; + align-items: center; width: 50%; + } + + #todolist-left { + width: 100%; padding: 0 8px 0 0 } #todolist-right { - width: 50%; + width: 100%; padding: 0 0 0 8px } @@ -113,7 +124,7 @@ } @media screen and (max-width: 768px) { - #todolist-left,#todolist-right { + #todolist-left, #todolist-right { width: 100%; } } @@ -145,7 +156,6 @@ -