Files
ontime/apps/client/src/common/components/input/colour-input/SwatchSelect.module.scss
T
2025-08-18 22:00:16 +02:00

30 lines
396 B
SCSS

.list {
display: flex;
flex-wrap: nowrap;
gap: 0.5rem;
}
.swatch {
width: 2rem;
height: 2rem;
aspect-ratio: 1;
border-radius: 99px;
border: 2px solid $gray-1200;
color: $ui-white;
display: grid;
place-content: center;
&.selected {
border: 2px solid $blue-500;
}
&.selectable {
cursor: pointer;
&:hover {
border: 2px solid $blue-300;
}
}
}