-
Are you sure you want to delete this record ?
-
-
-
+
+
+
Are you sure you want to delete this record ?
+
+
+
-
+
{{ memo.name }}
diff --git a/resources/sass/app.scss b/resources/sass/app.scss
index e3cb039..2e91e1c 100644
--- a/resources/sass/app.scss
+++ b/resources/sass/app.scss
@@ -14,6 +14,7 @@
@import "components/main";
@import "components/nav";
@import "components/topbar";
+@import "components/modal";
@import "components/avatar";
@import "components/alert_box";
@import "components/search_box";
diff --git a/resources/sass/components/_elements.scss b/resources/sass/components/_elements.scss
index f6095ab..dfa71dd 100644
--- a/resources/sass/components/_elements.scss
+++ b/resources/sass/components/_elements.scss
@@ -36,3 +36,7 @@ a {
color: $dark;
}
}
+
+pre {
+
+}
diff --git a/resources/sass/components/modal.scss b/resources/sass/components/modal.scss
index e69de29..b32ff51 100644
--- a/resources/sass/components/modal.scss
+++ b/resources/sass/components/modal.scss
@@ -0,0 +1,26 @@
+$modal-duration: 1s;
+
+.modal-container {
+ background-color: rgba(0,0,0,0.6);
+ //display: none;
+ position: fixed;
+ 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;
+ }
+}
diff --git a/resources/sass/setup/_containers.scss b/resources/sass/setup/_containers.scss
index 7735c30..219617d 100644
--- a/resources/sass/setup/_containers.scss
+++ b/resources/sass/setup/_containers.scss
@@ -14,6 +14,7 @@
text-decoration: none;
flex-direction: column;
justify-content: space-between;
+ cursor: pointer;
img,
svg {
@@ -58,6 +59,7 @@
background-color: $light;
padding: 0.5rem 1rem;
border-radius: 0.2rem;
+ cursor: pointer;
svg {
width: 2rem;