Skip to content

Commit

Permalink
Fix double border
Browse files Browse the repository at this point in the history
  • Loading branch information
youknowriad committed Sep 20, 2024
1 parent b941814 commit 587ce03
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,9 @@
> :last-child .components-toolbar,
// If the last toolbar group is empty,
// we need to remove the double border from the penultimate one.
&:has(> :last-child:empty) > :nth-last-child(2) {
&:has(> :last-child:empty) > :nth-last-child(2),
&:has(> :last-child:empty) > :nth-last-child(2) .components-toolbar-group,
&:has(> :last-child:empty) > :nth-last-child(2) .components-toolbar {
border-right: none;
}

Expand Down

0 comments on commit 587ce03

Please sign in to comment.