miw-t-uwu-t-pub.id/src/css/scss/base/_b-helper.scss

16 lines
230 B
SCSS
Raw Normal View History

2023-03-11 13:54:16 +00:00
@charset 'UTF-8';
//calc pixel to rem. 1rem = 16px.
@function calcPxToRem($size) {
$remSize: $size / 16px;
@return #{$remSize}rem;
}
@mixin clearfix {
&::after {
content: '';
clear: both;
display: table;
}
}