diff options
author | CircleShift <kgunger12@gmail.com> | 2025-06-21 15:25:11 -0400 |
---|---|---|
committer | CircleShift <kgunger12@gmail.com> | 2025-06-21 15:25:11 -0400 |
commit | 63be9fc5416f6cd3aef911cecacdb697d7b86362 (patch) | |
tree | ff35936b1a86ade84395ecf8d98f2dd14133de81 /styles/widgets.css | |
parent | 1b8b5dac5c5e1f12c15d72d0e43ac1cbfa7cada3 (diff) |
Slider percentage fixes
Diffstat (limited to 'styles/widgets.css')
-rw-r--r-- | styles/widgets.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/styles/widgets.css b/styles/widgets.css index 40ec4fc..9483a81 100644 --- a/styles/widgets.css +++ b/styles/widgets.css @@ -210,7 +210,7 @@ z-index: 2; font-weight: bold; - width: calc(1.2 * var(--base-unit)); + min-width: var(--base-unit); height: var(--base-unit); pointer-events: none; user-select: none; @@ -233,6 +233,11 @@ transition-duration: 0s; } +.color-light > .detail, .color-temp > .detail, .color-wheel > .detail { + min-width: 0; + width: var(--base-unit); +} + .color-light:active > .detail, .color-temp:active > .detail, .color-wheel:active > .detail, |