bat/tests/syntax-tests/highlighted/SASS/example.sass
2020-09-07 22:25:14 +02:00

20 lines
2.5 KiB
Sass
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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