Skip to content

Commit

Permalink
fix: for small screens too
Browse files Browse the repository at this point in the history
  • Loading branch information
Jess Divers committed Aug 16, 2024
1 parent dad612b commit dafb9d3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pages/events/[slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,8 @@ $pale-blue: #E7EDF2;
position: absolute;
background-color: $pale-blue;
aspect-ratio: 1440 / 520;
max-height: 518px;
max-height: 518px; //prevent overflow on large screens
min-height: 225px; //prevent too much shrinking on small screens
width: 100%;
z-index: -1;
}
Expand Down

0 comments on commit dafb9d3

Please sign in to comment.