diff --git a/src/assets/scss/main.scss b/src/assets/scss/main.scss
index 57c656e..a1ee153 100644
--- a/src/assets/scss/main.scss
+++ b/src/assets/scss/main.scss
@@ -62,6 +62,12 @@ input {
&:focus-visible {
@apply outline-2 outline-cyan;
}
+ &.inactive {
+ @apply bg-gray-600/50 hover:cursor-not-allowed;
+ &::placeholder {
+ @apply text-gray-300/50;
+ }
+ }
}
.form-field-full {
diff --git a/src/components/gui/UserPanel.vue b/src/components/gui/UserPanel.vue
index b5c12a8..1e70f24 100644
--- a/src/components/gui/UserPanel.vue
+++ b/src/components/gui/UserPanel.vue
@@ -6,8 +6,8 @@
-
-
+
+
-
-
+
+
+
+
@@ -30,8 +32,10 @@
\ No newline at end of file
diff --git a/src/components/gui/partials/settings/CharacterSettings.vue b/src/components/gui/partials/settings/CharacterSettings.vue
new file mode 100644
index 0000000..ce31a35
--- /dev/null
+++ b/src/components/gui/partials/settings/CharacterSettings.vue
@@ -0,0 +1,29 @@
+
+
+
+
Character details
+
Edit
+
+
+
+
+
+
\ No newline at end of file
diff --git a/tailwind.config.js b/tailwind.config.js
index cfa7345..6389f61 100644
--- a/tailwind.config.js
+++ b/tailwind.config.js
@@ -79,7 +79,8 @@ export default {
100: '#7f7f7f',
200: '#696969',
300: '#313638',
- 500: '#778899'
+ 500: '#778899',
+ 600: '#B1B2B5'
}
}
},