mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 18:33:53 +00:00
23 lines
306 B
SCSS
23 lines
306 B
SCSS
.presetSection {
|
|
background-color: $gray-1350;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 0.25rem;
|
|
padding: 1rem 0.5rem;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.preset {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 0.5rem;
|
|
|
|
&.active {
|
|
color: $blue-500;
|
|
}
|
|
}
|
|
|
|
.presetActions {
|
|
margin-left: auto;
|
|
}
|