Skip to content

Commit

Permalink
Fix project selector height on mobile (#2371)
Browse files Browse the repository at this point in the history
  • Loading branch information
Nateowami authored Mar 13, 2024
1 parent 6941bb0 commit f2cf241
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
::ng-deep .app-navigation-project-selector-panel.mdc-menu-surface.mat-mdc-select-panel {
// Top app bar height is 56px, this project selector's height is 56px, and we want 32px of space at the bottom.
// 56 + 56 + 32 = 144
max-height: calc(100vh - 144px);
max-height: calc(100dvh - 144px);

// .project-option added to increase CSS rule specificity
mat-option.project-option {
Expand Down

0 comments on commit f2cf241

Please sign in to comment.