fix(button): fix button text color to #ffffff

Fixes regression introduced in cac2690fd6
This commit is contained in:
kolaente
2026-01-10 18:47:50 +01:00
parent 61b4c1b87e
commit e5cfe3aa13

View File

@@ -75,7 +75,7 @@ const variantClass = computed<string>(() => VARIANT_CLASS_MAP[variant.value])
.button {
// Button text must stay white regardless of theme, so we use a fixed value
// instead of var(--white) which changes in dark mode.
--button-text-color: #fff;
--button-text-color: #ffffff;
// Base structure (replaces Bulma's .button)
display: inline-flex;