soapbox/app/styles/fonts.scss

14 wiersze
387 B
SCSS
Czysty Zwykły widok Historia

@use 'sass:math';
2020-03-27 20:59:38 +00:00
// TYPEOGRAPHY MIXINS
// Use these mixins to define font-size and line-height
// html and body declaration allows developer to pass px value as argument
// Rendered css will default to "rem" and fall back to "px" for unsupported browsers
@mixin font-size($size) {
$rem: math.div($size, 10);
2020-04-11 19:52:41 +00:00
$px: $size;
2023-01-09 21:04:28 +00:00
font-size: #{$px + 'px'};
font-size: #{$rem + 'rem'};
2020-04-11 19:52:41 +00:00
}