Skip to content
This repository has been archived by the owner on Sep 11, 2024. It is now read-only.

Commit

Permalink
Keep dialog glass border on narrow screens
Browse files Browse the repository at this point in the history
It got pushed off the edge and eventually disappeared on narrow
screens, so force it to always be present.
  • Loading branch information
dbkr committed Jun 10, 2024
1 parent afd6f63 commit 5277c06
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion res/css/_common.pcss
Original file line number Diff line number Diff line change
Expand Up @@ -332,7 +332,10 @@ legend {
.mx_Dialog_border {
z-index: var(--dialog-zIndex-standard);
position: relative;
max-height: calc(100% - var(--cpd-space-12x));
width: 100%;
max-width: min-content;
box-sizing: border-box;
max-height: calc(100% - var(--cpd-space-6x));
display: flex;
flex-direction: column;

Expand Down

0 comments on commit 5277c06

Please sign in to comment.