15 lines
372 B
SCSS
15 lines
372 B
SCSS
// ==========================================================================
|
|
// Functions
|
|
// ==========================================================================
|
|
@function em($px, $base: $font-size) {
|
|
@return ($px / $base) * 1em;
|
|
}
|
|
|
|
@function rem($px, $base: $font-size) {
|
|
@return ($px / $base) * 1rem;
|
|
}
|
|
|
|
@function span($fraction) {
|
|
@return $fraction * 100%;
|
|
}
|