Skip to content

Commit

Permalink
add spec for trimming super selectors in @extend (pt. 2) (#1872)
Browse files Browse the repository at this point in the history
  • Loading branch information
connorskees committed Jan 30, 2023
1 parent a5d4b0c commit 7e22918
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions spec/directives/extend/trims_super_selector_without_combinator.hrx
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
<===> options.yml
:todo:
- dart-sass

<===> input.scss
a b {
@extend %c;
}

a > b {
@extend %c;
}

%c {
color: red;
}

<===> output.css
a b {
color: red;
}

0 comments on commit 7e22918

Please sign in to comment.