diff --git a/src/App.vue b/src/App.vue
index 6451362..c52fde7 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -84,5 +84,45 @@ button:hover {
button:focus-within {
border: 1px solid gold;
}
+
+// Card modal
+.g-card {
+ position: fixed;
+ z-index: 999;
+ top: 50%;
+ left: 50%;
+ transform: translate(-50%, -50%);
+
+ width: 90vw;
+ max-width: 350px;
+
+ padding: 0.5em 1em;
+ margin-top: 1em;
+
+ background-color: #2e2e2e;
+ box-shadow: 0 0 6px 1px #131313;
+}
+
+// Scrollbar
+/* width */
+::-webkit-scrollbar {
+ width: 7px;
+}
+
+/* Track */
+::-webkit-scrollbar-track {
+ background: #333;
+}
+
+/* Handle */
+::-webkit-scrollbar-thumb {
+ background: #888;
+ border-radius: 1rem;
+}
+
+/* Handle on hover */
+::-webkit-scrollbar-thumb:hover {
+ background: #aaa;
+}
diff --git a/src/components/ChangesModal.vue b/src/components/ChangesModal.vue
new file mode 100644
index 0000000..46208e7
--- /dev/null
+++ b/src/components/ChangesModal.vue
@@ -0,0 +1,54 @@
+
+
+
+
+
+
+
diff --git a/src/components/PopUpCard.vue b/src/components/PopUpCard.vue
index f258326..09769da 100644
--- a/src/components/PopUpCard.vue
+++ b/src/components/PopUpCard.vue
@@ -1,6 +1,6 @@
-