1
0
mirror of https://github.com/sharkdp/bat synced 2026-07-12 15:13:18 +00:00
Files
sharkdp--bat/tests/syntax-tests/highlighted/SASS/example.sass
T
2020-09-07 22:25:14 +02:00

2.5 KiB

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