Files
ontime/apps/client/src/features/operator/Operator.module.scss
T
2023-07-02 21:35:02 +02:00

27 lines
402 B
SCSS

// remember we are targeting phones and tablets
.operator {
width: 100vw;
height: 100vh;
background-color: white;
padding: 2rem;
font-size: 0.8rem;
display: flex;
flex-direction: column;
gap: 2px;
}
@mixin event-block() {
padding: 0.5rem;
}
.scheduledEvent {
@include event-block();
background-color: hotpink;
}
.block {
@include event-block();
background-color: wheat;
}