Files
OfficialSite/assets/styles/tools/_functions.scss
Chauncey McAskill 79219e0659 Updated EditorConfig Recommendations
Applied 4-spaces for everything as per: https://locomotivemtl.teamwork.com/tasks/7113032
2016-09-07 18:30:36 -04:00

15 lines
381 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%;
}