-
STYLES
-
-
-
-
-
-
- {{ style.displayName }}
-
-
+
+
+
+ {{ theme.displayName }}
-
-
-
LAYOUTS
-
-
-
-
-
-
- {{ layout.displayName }}
-
-
-
![]()
-
-
-
+
@@ -57,120 +32,39 @@
\ No newline at end of file
diff --git a/components/UserInterface/Button.vue b/components/UserInterface/Button.vue
index ad4cdb5..467b65e 100644
--- a/components/UserInterface/Button.vue
+++ b/components/UserInterface/Button.vue
@@ -1,7 +1,6 @@
-
@@ -10,7 +9,7 @@
const props = defineProps<{
text: string,
callback?: CallableFunction,
- variant?: "normal" | "scary" | "neutral" | "stealth",
+ variant?: "normal" | "scary" | "neutral",
}>();
@@ -22,12 +21,11 @@ const props = defineProps<{
background-color: var(--primary-color);
color: var(--text-color);
- padding: 0.35em 0.65em;
- font-size: 1em;
-
+ padding: 0.4em 0.75em;
+ font-size: 1.1em;
transition: background-color 0.2s;
- border-radius: var(--standard-radius);
+ border-radius: 0.7rem;
text-decoration: none;
display: inline-block;
@@ -52,11 +50,4 @@ const props = defineProps<{
background-color: var(--accent-highlighted-color);
}
-.stealth-button {
- background-color: unset;
-}
-.stealth-button:hover {
- background-color: unset;
-}
-
\ No newline at end of file
diff --git a/components/UserInterface/ContextMenu.vue b/components/UserInterface/ContextMenu.vue
index 1767657..5342b8c 100644
--- a/components/UserInterface/ContextMenu.vue
+++ b/components/UserInterface/ContextMenu.vue
@@ -1,15 +1,11 @@
-