Skip to content

Commit

Permalink
Display program vertically on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
khcr committed Apr 15, 2024
1 parent 4b5122d commit 4adf695
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions src/components/2024/Program.astro
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@
flex-direction: column;
gap: 25px;

h4 {
text-transform: uppercase;
font-weight: bold;
}

.timetable {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -132,10 +137,26 @@
}
}
}
}
}

@media only screen and (max-width: $main-width) {

section {

.section-container {
padding: 30px 0 50px 0;

h4 {
text-transform: uppercase;
font-weight: bold;
.days {
flex-direction: column;

.day {

h4 {
margin: 20px 0 0 0;
}
}
}
}
}
}
Expand Down

0 comments on commit 4adf695

Please sign in to comment.