mirror of
https://github.com/thangisme/notes.git
synced 2024-10-31 22:27:22 -04:00
11 lines
169 B
SCSS
11 lines
169 B
SCSS
|
@function rem($size, $unit:"") {
|
||
|
$remSize: $size / $root-font-size;
|
||
|
|
||
|
@if ($unit == false) {
|
||
|
@return #{$remSize};
|
||
|
}
|
||
|
@else {
|
||
|
@return #{$remSize}rem;
|
||
|
}
|
||
|
}
|