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