Skip to content

Instantly share code, notes, and snippets.

@ourmaninamsterdam
Last active August 29, 2015 14:11
Show Gist options
  • Save ourmaninamsterdam/11f70852b9680b84293d to your computer and use it in GitHub Desktop.
Save ourmaninamsterdam/11f70852b9680b84293d to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
// ----
// Sass (v3.4.9)
// Compass (v1.0.1)
// ----
@mixin property($property, $multiple) {
@supports($property: 1rem){
#{$property}: ($multiple / $base-font-size) * 1rem;
};
#{$property}: $multiple * 1px;
}
.text {
@include property(font-size, 2);
}
.text {
font-size: 2px;
}
@supports (font-size: 1rem) {
.text {
font-size: 2rem;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment