From cdb52fdfef792362b1fa173330b08535044703fe Mon Sep 17 00:00:00 2001 From: O3H Date: Wed, 20 Nov 2024 00:33:46 +0000 Subject: [PATCH] Fix some stuff in config editor Fixes some stuff that broke due to migration to PrimeVue v4 within the config edit layout. Also made it easier on the eyes. --- .../selected-game/ConfigEditLayout.vue | 18 ++++++++++++------ 1 file changed, 12 insertions(+), 6 deletions(-) diff --git a/frontend/src/components/selected-game/ConfigEditLayout.vue b/frontend/src/components/selected-game/ConfigEditLayout.vue index fcc3479..8f3550e 100644 --- a/frontend/src/components/selected-game/ConfigEditLayout.vue +++ b/frontend/src/components/selected-game/ConfigEditLayout.vue @@ -74,18 +74,18 @@ const asBool = (str: string) => {
-
+

{{ key }}

-
{{ entry.comments[0].replaceAll('#', '') }}
-
{{ comment }}
+
{{ entry.comments[0].replaceAll('#', '') }}
+
{{ comment }}
-
+
@@ -109,8 +109,14 @@ const asBool = (str: string) => { } .entry-key { + font-weight: 420; font-size: 18px; - color: var(--primary-color); + color: var(--p-primary-color); +} + +.entry-description { + font-weight: 250; + font-size: 16px; } .category-divider { @@ -121,7 +127,7 @@ const asBool = (str: string) => { .file-name { font-size: 24px; - color: var(--primary-color); + color: var(--p-primary-color); text-shadow: 0px 0px 18px rgba(255, 255, 255, 0.3); } \ No newline at end of file