Files
feishin/src/shared/components/segmented-control/segmented-control.module.css
T
2025-12-23 18:19:52 -08:00

20 lines
347 B
CSS

.root {
background: var(--theme-colors-surface);
}
.label {
&[data-active='true'] {
@mixin dark {
background-color: lighten(var(--theme-colors-surface), 10%);
}
@mixin light {
background-color: darken(var(--theme-colors-surface), 10%);
}
}
}
.indicator {
display: none;
}