-
-
Save infernalmaster/4f84cf0359a29f843146 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 cover-background( $path ) { | |
| background-image: url( $path ); | |
| @include background-size( cover ); | |
| -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='" + $path + "', sizingMethod='scale')"; | |
| filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='#{$path}', sizingMethod="scale"); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment