mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-12 10:53:51 +00:00
474f1e2177
* refactor: limited-input-device auth * refactor: resolve sheet directory from setup * refactor: extract sheet logic in backend * refactor: simplify sheet integration --------- Co-authored-by: cv <34649812+cpvalente@users.noreply.github.com> Co-authored-by: Carlos Valente <carlosvalente@pm.me>
28 lines
349 B
SCSS
28 lines
349 B
SCSS
.list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
gap: 0.5rem
|
|
}
|
|
|
|
.swatch {
|
|
width: 2rem;
|
|
height: 2rem;
|
|
aspect-ratio: 1;
|
|
border-radius: 99px;
|
|
border: 2px solid $gray-1200;
|
|
|
|
&.selected {
|
|
border: 2px solid $blue-500;
|
|
}
|
|
|
|
&.selectable {
|
|
cursor: pointer;
|
|
}
|
|
}
|
|
|
|
.center {
|
|
display: grid;
|
|
place-content: center;
|
|
color: $ui-white;
|
|
}
|