mirror of
https://github.com/danog/MadelineProtoDocs.git
synced 2024-12-03 10:08:28 +01:00
10 lines
174 B
SCSS
10 lines
174 B
SCSS
@function remCustom($size, $unit: "") {
|
|
$remSize: $size / $root-font-size;
|
|
|
|
@if ($unit == false) {
|
|
@return #{$remSize};
|
|
} @else {
|
|
@return #{$remSize}rem;
|
|
}
|
|
}
|