diff --git a/Just/src/App.vue b/Just/src/App.vue
index bc2a7a0..ccce2f3 100644
--- a/Just/src/App.vue
+++ b/Just/src/App.vue
@@ -12,7 +12,65 @@
-
+
+
+
+
+
@@ -44,11 +102,9 @@
\ No newline at end of file
diff --git a/Just/src/components/ui-contextmenu.vue b/Just/src/components/ui-contextmenu.vue
index dabb7a9..a84cd01 100644
--- a/Just/src/components/ui-contextmenu.vue
+++ b/Just/src/components/ui-contextmenu.vue
@@ -96,7 +96,7 @@
{
--v-offset: 0px;
position: absolute;
- min-width: 220px;
+ min-width: 180px;
min-height: 20px;
background: var(--color-contextmenu-bg);
border-radius: var(--radius);
diff --git a/Just/src/modules/app-menu.vue b/Just/src/modules/app-menu.vue
index 83087f3..f974288 100644
--- a/Just/src/modules/app-menu.vue
+++ b/Just/src/modules/app-menu.vue
@@ -66,6 +66,7 @@
padding: var(--space);
display: grid;
grid-template-rows: auto 1fr auto;
+ z-index: 3;
@media (max-width: 700px)
{
@@ -74,6 +75,7 @@
transform: translateX(-110%);
transition: transform 0.6s ease;
pointer-events: none;
+ box-shadow: var(--color-menu-shadow);
&.is-open
{
diff --git a/Just/src/styles/config.scss b/Just/src/styles/config.scss
index 60d631a..acafc8e 100644
--- a/Just/src/styles/config.scss
+++ b/Just/src/styles/config.scss
@@ -2,6 +2,7 @@
:root
{
--space-s: 8px;
+ --space-sm: 10px;
--space-m: 12px;
--space: 16px;
diff --git a/Just/src/styles/main.scss b/Just/src/styles/main.scss
index 05947c5..a434c5a 100644
--- a/Just/src/styles/main.scss
+++ b/Just/src/styles/main.scss
@@ -56,4 +56,5 @@ button
border: none;
color: var(--color-text);
cursor: pointer;
+ padding: 0;
}
\ No newline at end of file
diff --git a/Just/src/styles/theme.scss b/Just/src/styles/theme.scss
index 280954c..6b07b80 100644
--- a/Just/src/styles/theme.scss
+++ b/Just/src/styles/theme.scss
@@ -25,6 +25,7 @@
// menu shades
--color-menu-bg: var(--color-bg-shade-3);
+ --color-menu-shadow: 3px 6px 32px rgba(0, 0, 0, 0.1);
--color-menu-item-hover-bg: var(--color-bg-shade-4);
--color-menu-item-count-bg: var(--color-bg-shade-4);
--color-menu-item-hover-count-bg: var(--color-bg-shade-5);