Files
ontime/apps/client/src/features/timeline/Timeline/TimelineMarkers.module.scss
T
2024-06-22 20:16:09 +02:00

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