Skip to content

Commit

Permalink
Rename indented to sass
Browse files Browse the repository at this point in the history
  • Loading branch information
jamesnw committed Oct 31, 2024
1 parent 46b628c commit c8fb383
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
14 changes: 6 additions & 8 deletions spec/directives/if/indented.hrx → spec/directives/if/sass.hrx
Original file line number Diff line number Diff line change
@@ -1,38 +1,36 @@
<===> sass/if/input.sass
<===> if/input.sass
$b: true
a
@if $b
value: 1

<===> sass/if/if-statement-unwrapped-multiline/output.css

<===> sass/if/output.css
<===> if/output.css
a {
value: 1;
}

<===>
================================================================================
<===> sass/if-statement/input.sass
<===> if-statement/input.sass
$b: c
a
@if $b == c
value: 1

<===> sass/if-statement/output.css
<===> if-statement/output.css
a {
value: 1;
}

<===>
================================================================================
<===> sass/if-statement-wrapped/input.sass
<===> if-statement-wrapped/input.sass
$b: c
a
@if ($b == c)
d: e

<===> sass/if-statement-wrapped/output.css
<===> if-statement-wrapped/output.css
a {
d: e;
}
Expand Down
File renamed without changes.

0 comments on commit c8fb383

Please sign in to comment.