Skip to content

Commit

Permalink
fixing rules that tell stepper-item header and content divs to stretc…
Browse files Browse the repository at this point in the history
…h the full width of the parent grid regardless if they're selected or not
  • Loading branch information
eriklharper committed Feb 14, 2024
1 parent f0411aa commit 82acf8f
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -283,14 +283,14 @@
}
}

:host([layout="horizontal-single"][selected]) {
:host([layout="horizontal-single"]) {
.stepper-item-header {
grid-area: 1 / 1 / 1 / -1;
}
}

:host([layout="horizontal"][selected]),
:host([layout="horizontal-single"][selected]) {
:host([layout="horizontal"]),
:host([layout="horizontal-single"]) {
.stepper-item-content {
grid-area: 2 / 1 / 2 / -1;
}
Expand Down

0 comments on commit 82acf8f

Please sign in to comment.