mirror of
https://github.com/sharkdp/bat.git
synced 2024-11-02 12:51:01 +01:00
20 lines
374 B
Sass
20 lines
374 B
Sass
@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;
|
|
}
|
|
}
|