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

Commit 5277c06

Browse files
committed
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.
1 parent afd6f63 commit 5277c06

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

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)