From 8947288e765b7a1067864ca55513f4d2a20a9f65 Mon Sep 17 00:00:00 2001 From: DebaucheryLibrarian Date: Wed, 3 Apr 2024 02:13:41 +0200 Subject: [PATCH] Fixed showcased filter not adhered. Improved filter settings UI. --- components/dialog/dialog.vue | 13 +++++++++++++ components/form/checkbox.vue | 13 +++++++++++++ components/settings/settings.vue | 5 +++++ src/web/scenes.js | 1 + 4 files changed, 32 insertions(+) diff --git a/components/dialog/dialog.vue b/components/dialog/dialog.vue index 3c737ec..6341ec2 100644 --- a/components/dialog/dialog.vue +++ b/components/dialog/dialog.vue @@ -46,6 +46,19 @@ onMounted(() => emit('open')); border-radius: 0 0 .25rem .25rem; background: var(--background); } + +.dialog-heading { + color: var(--primary); + margin: 0 0 .5rem 0; + font-size: 1rem; +} + +.dialog-description { + margin: 0 0 .5rem 0; + color: var(--shadow-strong-10); + font-size: .9rem; + line-height: 1.5; +}