Skip to content

Commit

Permalink
🐛 fix(accordion.scss): Fix incorrect selector used in commit a95694b
Browse files Browse the repository at this point in the history
  • Loading branch information
Spiderpig86 committed Dec 24, 2023
1 parent 161bf52 commit 7090712
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion dist/cirrus-all.css
Original file line number Diff line number Diff line change
Expand Up @@ -21855,7 +21855,7 @@ details.accordion[open] summary.accordion__summary:after {
transform: rotate(0);
}

details.accordion:last-child {
details.accordion:last-of-type {
border-color: transparent;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus-all.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cirrus.css
Original file line number Diff line number Diff line change
Expand Up @@ -15703,7 +15703,7 @@ details.accordion[open] summary.accordion__summary:after {
transform: rotate(0);
}

details.accordion:last-child {
details.accordion:last-of-type {
border-color: transparent;
}

Expand Down
2 changes: 1 addition & 1 deletion dist/cirrus.min.css

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/components/accordion.scss
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
}
}

&:last-child {
&:last-of-type {
border-color: transparent;
}
}
Expand Down

0 comments on commit 7090712

Please sign in to comment.