Rename SASS tests to SCSS, since they're using SCSS syntax

This commit is contained in:
Ethan P
2020-10-05 18:40:38 -07:00
committed by David Peter
parent 7a180e22ff
commit 83d96e2bbb
3 changed files with 0 additions and 0 deletions

View 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;
 }
}