Skip to content

Instantly share code, notes, and snippets.

@kunwardeep
Forked from zastrow/Unbuttonize Mixin.scss
Created February 28, 2025 12:05
Show Gist options
  • Save kunwardeep/eeaf92a8b77e77c1698c99b53faac92c to your computer and use it in GitHub Desktop.
Save kunwardeep/eeaf92a8b77e77c1698c99b53faac92c 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