Skip to content

Commit

Permalink
fix: APPS-2893 set max height blue box for large screens (#30)
Browse files Browse the repository at this point in the history
* fix: set max height blue box for large screens

* fix: for small screens too

---------

Co-authored-by: Jess Divers <jessica.divers@library.ucla.edu>
  • Loading branch information
farosFreed and Jess Divers authored Aug 17, 2024
1 parent cf23d0b commit eeca6bb
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions pages/events/[slug].vue
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,8 @@ $pale-blue: #E7EDF2;
position: absolute;
background-color: $pale-blue;
aspect-ratio: 1440 / 520;
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

1 comment on commit eeca6bb

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.