1
0
mirror of https://github.com/locomotivemtl/locomotive-boilerplate.git synced 2026-01-15 00:55:08 +08:00
Files
locomotive-boilerplate/assets/styles/tools/_functions.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%;
}