1
0
mirror of https://github.com/thangisme/notes.git synced 2024-06-03 02:00:42 +00:00
notes/_sass/support/_functions.scss
pmarsceill c818624363 🎨 Prettier
2020-04-24 15:44:37 +00:00

10 lines
168 B
SCSS

@function rem($size, $unit: "") {
$remSize: $size / $root-font-size;
@if ($unit == false) {
@return #{$remSize};
} @else {
@return #{$remSize}rem;
}
}