Skip to content

Commit

Permalink
fixed time indicator font sizes
Browse files Browse the repository at this point in the history
  • Loading branch information
OfficialFreak committed Mar 25, 2024
1 parent 8cda4ff commit d48301b
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions client/src/components/Weekplan/Weekplan.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,9 @@
line-height: calc(2 * var(--lesson-height) + .5rem);
font-weight: bold;
font-size: var(--font-size-lg);
@media only screen and (max-width: 900px) {
font-size: var(--font-size-base);
}
text-align: center;
}
}
Expand All @@ -229,6 +232,10 @@
flex-direction: column;
span {
font-size: var(--font-size-base);
@media only screen and (max-width: 900px) {
font-size: var(--font-size-sm);
}
height: calc(var(--lesson-height) + .25rem);
line-height: calc(var(--lesson-height) + .25rem);
opacity: 0.5;
Expand Down

0 comments on commit d48301b

Please sign in to comment.