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

Commit 3e7511c

Browse files
authored
Keep dialog glass border on narrow screens (#12591)
* Keep dialog glass border on narrow screens It got pushed off the edge and eventually disappeared on narrow screens, so force it to always be present. * Update screenshot
1 parent 4e3de2b commit 3e7511c

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed
Loading

res/css/_common.pcss

+4-1
Original file line numberDiff line numberDiff line change
@@ -332,7 +332,10 @@ legend {
332332
.mx_Dialog_border {
333333
z-index: var(--dialog-zIndex-standard);
334334
position: relative;
335-
max-height: calc(100% - var(--cpd-space-12x));
335+
width: 100%;
336+
max-width: min-content;
337+
box-sizing: border-box;
338+
max-height: calc(100% - var(--cpd-space-6x));
336339
display: flex;
337340
flex-direction: column;
338341

0 commit comments

Comments
 (0)