From d5ba66ca1a6872140042c08d7dc64bb0b774580c Mon Sep 17 00:00:00 2001 From: Stefan Sundin Date: Fri, 2 Apr 2021 22:49:19 -0700 Subject: [PATCH] Add a min-width to the "Automatic dark mode" inputs to stop UI shifting when clicking the "24-hour clock" checkbox. I have no idea where this should go so I just put it somewhere. --- ui/scss/component/_form-field.scss | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ui/scss/component/_form-field.scss b/ui/scss/component/_form-field.scss index ffbe29d27..7095bc52d 100644 --- a/ui/scss/component/_form-field.scss +++ b/ui/scss/component/_form-field.scss @@ -459,3 +459,8 @@ fieldset-section { } } } + +#automatic_dark_mode_range_start, +#automatic_dark_mode_range_end { + min-width: 6em; +}