Skip to content

Instantly share code, notes, and snippets.

@stevedya
Created September 23, 2020 17:55
Show Gist options
  • Select an option

  • Save stevedya/0eab694aad6fee636ecff5283d203d33 to your computer and use it in GitHub Desktop.

Select an option

Save stevedya/0eab694aad6fee636ecff5283d203d33 to your computer and use it in GitHub Desktop.
Inset Sass Mixin
/* ============================================
Inset helper for quick top, right, bottom, left properties.
Use until the inset: css property has better browser support
https://caniuse.com/mdn-css_properties_inset
*/
@mixin inset($top: 0, $right: 0, $bottom: 0, $left: 0) {
top: $top;
right: $right;
bottom: $bottom;
left: $left;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment