1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-16 05:45:28 +00:00
notes/_sass/support/_functions.scss

11 lines
169 B
SCSS
Raw Normal View History

2017-03-09 18:16:08 +00:00
@function rem($size, $unit:"") {
$remSize: $size / $root-font-size;
@if ($unit == false) {
@return #{$remSize};
}
@else {
@return #{$remSize}rem;
}
}