Created
September 3, 2019 10:52
-
-
Save vmohir/9a3b8ef6349174dfc65546f29432c747 to your computer and use it in GitHub Desktop.
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
@mixin svg-icon($icon_name) { | |
width: 16px; | |
display: inline-block; | |
&:before { | |
background: url('/assets/svg/#{$icon_name}'); | |
content: ''; | |
background-size: contain; | |
padding-bottom: 100%; | |
display: block; | |
} | |
} | |
.svg-m-react { | |
@include svg-icon('react-native.svg'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment