20 lines
509 B
CSS
20 lines
509 B
CSS
.theme-switch h2 {
|
|
font-size: var(--size-step-min-1);
|
|
font-family: var(--font-base);
|
|
}
|
|
|
|
.theme-switch .button {
|
|
--button-border: var(--color-bg-accent-2);
|
|
border-radius: var(--border-radius);
|
|
font-size: var(--size-step-min-2);
|
|
padding: 0.1rem 0.625rem;
|
|
font-weight: 600;
|
|
min-block-size: 1.5em;
|
|
text-transform: uppercase;
|
|
}
|
|
|
|
.theme-switch .button[aria-pressed='true'] {
|
|
--button-bg: var(--color-primary);
|
|
--button-text: var(--color-base-light);
|
|
--button-border: var(--color-primary);
|
|
}
|