Skip to content

Instantly share code, notes, and snippets.

@MThakkar121
Created July 31, 2019 09:40
Show Gist options
  • Save MThakkar121/469a9d17d7433574d006c6d4a47f0e6a to your computer and use it in GitHub Desktop.
Save MThakkar121/469a9d17d7433574d006c6d4a47f0e6a to your computer and use it in GitHub Desktop.
scss syntax
@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;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment