mirror of
https://github.com/sharkdp/bat.git
synced 2025-09-01 10:52:24 +01:00
Rename SASS tests to SCSS, since they're using SCSS syntax
This commit is contained in:
19
tests/syntax-tests/source/SCSS/example.scss
Normal file
19
tests/syntax-tests/source/SCSS/example.scss
Normal file
@@ -0,0 +1,19 @@
|
||||
@mixin button-base() {
|
||||
@include typography(button);
|
||||
@include ripple-surface;
|
||||
@include ripple-radius-bounded;
|
||||
|
||||
display: inline-flex;
|
||||
position: relative;
|
||||
height: $button-height;
|
||||
border: none;
|
||||
vertical-align: middle;
|
||||
|
||||
&:hover { cursor: pointer; }
|
||||
|
||||
&:disabled {
|
||||
color: $mdc-button-disabled-ink-color;
|
||||
cursor: default;
|
||||
pointer-events: none;
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user