From 8cb61a79bac4103ec92b8301dac4ac5138486484 Mon Sep 17 00:00:00 2001 From: ArneBo Date: Mon, 23 Dec 2024 17:24:29 +0100 Subject: [PATCH] fix(style): global form label styles --- front/src/components/auth/LoginForm.vue | 11 ----------- front/src/components/ui/input.scss | 10 ++++++++++ 2 files changed, 10 insertions(+), 11 deletions(-) diff --git a/front/src/components/auth/LoginForm.vue b/front/src/components/auth/LoginForm.vue index bf8f8c4df..4dedcc95d 100644 --- a/front/src/components/auth/LoginForm.vue +++ b/front/src/components/auth/LoginForm.vue @@ -162,14 +162,3 @@ const submit = async () => { - - diff --git a/front/src/components/ui/input.scss b/front/src/components/ui/input.scss index 91d315a7a..0822ef9dc 100644 --- a/front/src/components/ui/input.scss +++ b/front/src/components/ui/input.scss @@ -1,4 +1,14 @@ .funkwhale { + +form label { + display: block; + margin-bottom: 8px; + color: var(--form-label-color); + font-size: .92857143em; + font-weight: 700; + text-transform: none; +} + &.input { background-color: var(--fw-bg-color); box-shadow: inset 0 0 0 4px var(--fw-border-color);