mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 04:43:35 +00:00
initial setup
This commit is contained in:
@@ -0,0 +1,26 @@
|
||||
// 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;
|
||||
}
|
||||
Reference in New Issue
Block a user