You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
bat/tests/syntax-tests/highlighted/SCSS/example.scss

20 lines
2.5 KiB
SCSS

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