mirror of
https://github.com/cpvalente/ontime.git
synced 2026-08-16 21:03:29 +00:00
25 lines
340 B
SCSS
25 lines
340 B
SCSS
.timeline {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
|
|
background-color: $ui-black;
|
|
color: $ui-white;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 2rem;
|
|
}
|
|
|
|
.title {
|
|
padding-inline: 2rem;
|
|
font-size: 3.5rem;
|
|
}
|
|
|
|
.sections {
|
|
padding-inline: 2rem;
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
row-gap: 1rem;
|
|
column-gap: 3rem;
|
|
}
|