Skip to content

Instantly share code, notes, and snippets.

@dippas
Last active May 5, 2017 01:38
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dippas/b4ec9537a8c8cd6b24b2ea5ec434778c to your computer and use it in GitHub Desktop.
Save dippas/b4ec9537a8c8cd6b24b2ea5ec434778c to your computer and use it in GitHub Desktop.
Remove Bootstrap 4 button outline Mixin
// ----
// Sass (v3.4.21)
// Compass (v1.0.3)
// ----
@mixin outline($value) {
outline: $value;
}
button {
@include outline(0);
}
button {
outline: 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment