mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-06 16:03:52 +00:00
27 lines
402 B
SCSS
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;
|
|
}
|