mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-11 18:33:53 +00:00
20 lines
310 B
SCSS
20 lines
310 B
SCSS
.markers {
|
|
width: 100%;
|
|
color: $ui-white;
|
|
background-color: $white-10;
|
|
display: flex;
|
|
height: 1rem;
|
|
line-height: 1rem;
|
|
font-size: calc(1rem - 2px);
|
|
justify-content: space-evenly;
|
|
text-align: center;
|
|
|
|
& > * {
|
|
flex-grow: 1;
|
|
}
|
|
|
|
:nth-child(odd) {
|
|
background-color: $white-20;
|
|
}
|
|
}
|