Created
September 23, 2020 17:55
-
-
Save stevedya/0eab694aad6fee636ecff5283d203d33 to your computer and use it in GitHub Desktop.
Inset Sass Mixin
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* ============================================ | |
| 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