Skip to content

Commit d6b3a8a

Browse files
committed
chore: minor layout changes
1 parent 2217bc4 commit d6b3a8a

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

src/App.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@
2222
</div>
2323

2424
<div class="list-todos-wrapper">
25-
<ui5-panel header-text="Incompleted Tasks">
25+
<ui5-panel class="list-todos-panel" header-text="Incompleted Tasks">
2626
<TodoList :todos="todos" @selection-change="handleDone"
2727
@item-deleted="handleRemove"
2828
@item-edit="handleEdit">
2929
</TodoList>
3030
</ui5-panel>
3131

32-
<ui5-panel header-text="Completed Tasks">
32+
<ui5-panel class="list-todos-panel" header-text="Completed Tasks">
3333
<TodoList :todos="doneTodos" @selection-change="handleUndone"
3434
@item-deleted="handleRemove"
3535
@item-edit="handleEdit">
@@ -300,6 +300,10 @@ html, body {
300300
margin: 2rem 0;
301301
}
302302
303+
.list-todos-panel {
304+
margin: 2rem 0;
305+
}
306+
303307
.add-todo-element-width {
304308
width: auto;
305309
}

0 commit comments

Comments
 (0)