This file contains 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
// vmax polyfill as sass function | |
// should work also in IE 10/11 | |
@function vmaxCalc($vmax) { | |
@return calc(#{$vmax} * (#{1vw} + #{1vh} - #{1vmin})); | |
} | |
// usage: | |
width: vmaxCalc(75); |