Skip to content

Commit

Permalink
Use CSS variable in height calculation
Browse files Browse the repository at this point in the history
Signed-off-by: Neha Gokhale <[email protected]>
  • Loading branch information
nmgokhale committed Oct 16, 2023
1 parent 815f0e2 commit f8e1c00
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ $toolbar-button-height: 41px; // Allow one extra pixel for the toolbar border

.notification-panel-messages-container {
width: inherit;
max-height: calc(100% - #{$notification-panel-header-height} - 10px); // Extra 10px makes sure full height of notification-panel-button-container is visible in narrow window
max-height: calc(100% - #{$notification-panel-header-height} - #{$notification-panel-subtitle-height});
height: 100%;
}
.notification-panel-messages {
Expand Down

0 comments on commit f8e1c00

Please sign in to comment.