Files
feishin/src/shared/components/switch/switch.module.css
T
Jeff c1330d92b2 Migrate to Mantine v8 and Design Changes (#961)
* mantine v8 migration

* various design changes and improvements
2025-06-24 00:04:36 -07:00

17 lines
359 B
CSS

.thumb {
background: var(--theme-colors-foreground);
}
.track {
background-color: var(--theme-colors-surface);
border: 1px solid var(--theme-colors-border);
input:checked + & {
background-color: var(--theme-colors-primary-filled);
& > .thumb {
background: var(--theme-colors-primary-contrast);
}
}
}