logseq-calendar/src/widgets/ToggleSwitch.module.scss

20 lines
265 B
SCSS
Raw Normal View History

2023-08-24 02:47:25 +00:00
.toggleSwitch {
display: flex;
gap: 6px;
border-radius: 9999px;
background-color: lightgray;
font-size: 14px;
padding: 4px;
}
.option {
border-radius: 9999px;
padding: 4px 12px;
cursor: pointer;
&.selected {
background-color: gray;
}
}