4 lines
105 B
SCSS
4 lines
105 B
SCSS
|
|
@mixin font-size($sizeValue) {
|
||
|
|
font-size: $sizeValue + px;
|
||
|
|
font-size: ($sizeValue / 16) + rem;
|
||
|
|
}
|