Skip to content

Commit

Permalink
Use h3 for the name of the day in the canteen page
Browse files Browse the repository at this point in the history
  • Loading branch information
smrtrfszm committed Mar 26, 2024
1 parent cb42c06 commit 9e18128
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/pages/Canteen.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
list-style: none;
}

span {
h3 {
font-weight: 700;
font-size: 2rem;
margin-bottom: 1rem;
Expand Down
2 changes: 1 addition & 1 deletion src/pages/Canteen.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ const CanteenWeek: VoidComponent<CanteenWeekProps> = (props) => {
<For each={dataWithDays()}>
{(day) => (
<li>
<span>{day.day}</span>
<h3>{day.day}</h3>
<ul>
<Show when={(day.menus.length as number) === 0}>
<li>Nincs megadva</li>
Expand Down

0 comments on commit 9e18128

Please sign in to comment.