logseq-calendar/src/widgets/ToggleSwitch.module.scss
2023-08-23 21:47:25 -05:00

20 lines
265 B
SCSS

.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;
}
}