Skip to content

Instantly share code, notes, and snippets.

@zastrow
Last active September 17, 2023 15:50
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zastrow/bb43d2b256d52738e0ffdee7f825e79f to your computer and use it in GitHub Desktop.
Save zastrow/bb43d2b256d52738e0ffdee7f825e79f to your computer and use it in GitHub Desktop.
Remove Default Button Styles
@mixin unbuttonize {
// This removes styles added by default to button elements.
// For when something should semantically be a button,
// but isn't buttony in appearance.
background-color: transparent;
border: none;
margin: 0;
padding: 0;
text-align: inherit;
font: inherit;
border-radius: 0;
appearance: none; // Just in case we missed anything.
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment