From 87b8fc6a1b37d201407411637ae7449a531e9391 Mon Sep 17 00:00:00 2001 From: Johannes Zellner Date: Thu, 19 Sep 2024 13:04:03 +0200 Subject: [PATCH] dashboard: remove box-shadow on form-controls to be inline with buttons --- dashboard/src/theme.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dashboard/src/theme.scss b/dashboard/src/theme.scss index caaa1f2f4..9c98f73ba 100644 --- a/dashboard/src/theme.scss +++ b/dashboard/src/theme.scss @@ -135,6 +135,10 @@ select.form-control { background-position-y: 5px; } +.form-control { + box-shadow: none; +} + input[type="checkbox"], input[type="radio"] { margin-top: 2px; }