Skip to content

Commit

Permalink
Fix infobox heights
Browse files Browse the repository at this point in the history
In a recent change we fixed the infobox height at a specific proportion
of the viewport, but I realized that this makes the profile selector
super long for no reason. This changes it over to using max-height
instead of fixed height.
  • Loading branch information
pganssle committed Nov 27, 2023
1 parent ef5f0b6 commit cf759ae
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions _sass/_cim.scss
Original file line number Diff line number Diff line change
Expand Up @@ -442,8 +442,8 @@ body.colorscheme-light div.flag {
width: 95vw; // Fallback
width: 95dvw;
}
height: 90vh;
height: 90dvh;
max-height: 90vh;
max-height: 90dvh;
padding: 10px;
overflow-y: auto;
border: 1px solid #cccccc;
Expand Down

0 comments on commit cf759ae

Please sign in to comment.