Skip to content

Commit

Permalink
fix(tile-manager): styling issues with maximized state
Browse files Browse the repository at this point in the history
  • Loading branch information
SisIvanova committed Dec 12, 2024
1 parent 7e53a56 commit 495179a
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
4 changes: 4 additions & 0 deletions src/components/tile-manager/themes/tile-manager.base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -20,3 +20,7 @@
grid-auto-flow: dense;
overflow: auto hidden;
}

[part~='maximized-tile'] {
overflow: clip;
}
8 changes: 5 additions & 3 deletions src/components/tile-manager/themes/tile.base.scss
Original file line number Diff line number Diff line change
Expand Up @@ -45,13 +45,15 @@

:host([maximized]) {
position: absolute;
inset: unset;
inset: 0;
width: 100%;
height: 100%;
overflow: visible;
isolation: isolate;
z-index: 10;

//Fix for Firefox
grid-column: unset;
grid-row: unset;

[part~='base'] {
width: 100%;
height: 100%;
Expand Down

0 comments on commit 495179a

Please sign in to comment.