Skip to content

Commit

Permalink
fix(tile): set grid-area for chromium
Browse files Browse the repository at this point in the history
  • Loading branch information
skhamvon authored and dpellier committed Feb 2, 2024
1 parent 3a25c67 commit 2256bd6
Showing 1 changed file with 18 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,16 @@
}

slot[name="start"] {
grid-area: start;
justify-content: flex-start;
}

span:not([slot]) {
grid-area:center;
}

slot[name="end"] {
grid-area: end;
justify-content: flex-end;
}

Expand Down Expand Up @@ -103,6 +109,18 @@
slot {
display: inline;
}

slot[name="start"] {
grid-area: start;
}

span:not([slot]) {
grid-area:center;
}

slot[name="end"] {
grid-area: end;
}
}

:host(&--rounded){
Expand Down

0 comments on commit 2256bd6

Please sign in to comment.