1
0
mirror of https://github.com/sharkdp/bat.git synced 2025-09-02 03:12:25 +01:00

Add SASS file for syntax tests

This commit is contained in:
sharkdp
2020-09-07 22:23:26 +02:00
parent 96d4cdb7cb
commit 7f5d6d9791
4 changed files with 66 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;
 }
}