Created
November 20, 2013 18:00
-
-
Save fubhy/7567912 to your computer and use it in GitHub Desktop.
Generated by SassMeister.com.
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
// ---- | |
// Sass (v3.3.0.rc.1) | |
// Compass (v0.13.alpha.10) | |
// ---- | |
$base-font-size: 14px; | |
// ============================================================================= | |
// sass/abstraction/_units.scss | |
// ============================================================================= | |
// Custom function to convert px values into em relative to the base font size. | |
@function em($target, $context: $base-font-size) { | |
@if $target == 0 { | |
@return 0 | |
} | |
@return $target / $context * 1em; | |
} | |
// ============================================================================= | |
// Proof of concept. | |
// ============================================================================= | |
.foo-test { | |
width: em(140px); | |
} |
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
.foo-test { | |
width: 10em; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment