Created
October 29, 2013 15:52
-
-
Save fdaciuk/7217291 to your computer and use it in GitHub Desktop.
Mixin para usar qualquer propriedade com REM, com fallback para PX
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
// Configuração para HTML | |
html | |
font-size: 62.5% | |
@mixin rem( $prop, $val ) | |
#{$prop} : $val + px // pixels | |
#{$prop} : $val / 10 + rem // rem |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment