mirror of
https://github.com/snachodog/just-the-docs.git
synced 2025-04-10 14:01:22 -06:00
10 lines
169 B
SCSS
10 lines
169 B
SCSS
@function rem($size, $unit: "") {
|
|
$rem-size: $size / $root-font-size;
|
|
|
|
@if $unit == false {
|
|
@return #{$rem-size};
|
|
} @else {
|
|
@return #{$rem-size}rem;
|
|
}
|
|
}
|