Remove "fonts.scss"

This commit is contained in:
danidfra 2024-11-13 13:02:24 -03:00
parent 2cc5994e61
commit a9e8c57979
3 changed files with 1 additions and 17 deletions

View File

@ -1,5 +1,4 @@
@use 'variables';
@use 'fonts';
@use 'basics';
@use 'loading';
@use 'ui';

View File

@ -1,5 +1,3 @@
@use "../fonts";
.search {
position: relative;
}
@ -16,7 +14,7 @@
.svg-icon {
@apply right-4 rtl:left-4 rtl:right-auto text-gray-400;
@include fonts.font-size(16);
font-size: 16px;
cursor: default;
display: inline-block;
position: absolute;

View File

@ -1,13 +0,0 @@
@use 'sass:math';
// 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);
$px: $size;
font-size: #{$px + 'px'};
font-size: #{$rem + 'rem'};
}