Edit
Delete
diff --git a/resources/js/views/ToDoLists/ToDoListIndex.vue b/resources/js/views/ToDoLists/ToDoListIndex.vue
new file mode 100644
index 0000000..379ce19
--- /dev/null
+++ b/resources/js/views/ToDoLists/ToDoListIndex.vue
@@ -0,0 +1,67 @@
+
+
+
+
+
Add a new to-do list ?
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/resources/js/views/ToDoLists/ToDoListShow.vue b/resources/js/views/ToDoLists/ToDoListShow.vue
new file mode 100644
index 0000000..56b087a
--- /dev/null
+++ b/resources/js/views/ToDoLists/ToDoListShow.vue
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/resources/sass/components/modal.scss b/resources/sass/components/modal.scss
index b32ff51..25c7afa 100644
--- a/resources/sass/components/modal.scss
+++ b/resources/sass/components/modal.scss
@@ -3,24 +3,28 @@ $modal-duration: 1s;
.modal-container {
background-color: rgba(0,0,0,0.6);
//display: none;
- position: fixed;
+ z-index: 10;
+ position: absolute;
top: 0;
bottom: 0;
left: 0;
right: 0;
- .modal {
- background-color: #fff;
- border-radius: 5px;
- box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
- position: absolute;
- overflow: hidden;
- top: 50%;
- left: 50%;
- transform: translate(-50%, -50%);
- max-width: 100%;
- width: 400px;
- animation-name: modalopen;
- animation-duration: $modal-duration;
- }
+
+}
+
+.modal {
+ background-color: #fff;
+ border-radius: 5px;
+ box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
+ position: absolute;
+ z-index: 20;
+ //overflow: hidden;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+ max-width: 100%;
+ width: 400px;
+ animation-name: modalopen;
+ animation-duration: $modal-duration;
}