Skip to content

Commit 495179a

Browse files
committed
fix(tile-manager): styling issues with maximized state
1 parent 7e53a56 commit 495179a

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

src/components/tile-manager/themes/tile-manager.base.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,3 +20,7 @@
2020
grid-auto-flow: dense;
2121
overflow: auto hidden;
2222
}
23+
24+
[part~='maximized-tile'] {
25+
overflow: clip;
26+
}

src/components/tile-manager/themes/tile.base.scss

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,13 +45,15 @@
4545

4646
:host([maximized]) {
4747
position: absolute;
48-
inset: unset;
48+
inset: 0;
4949
width: 100%;
5050
height: 100%;
51-
overflow: visible;
52-
isolation: isolate;
5351
z-index: 10;
5452

53+
//Fix for Firefox
54+
grid-column: unset;
55+
grid-row: unset;
56+
5557
[part~='base'] {
5658
width: 100%;
5759
height: 100%;

0 commit comments

Comments
 (0)