Alaguraj0361 4785c22a25
Some checks failed
Build and Deploy Build Output / build (push) Has been cancelled
first commit
2025-11-07 10:51:36 +05:30

44 lines
487 B
SCSS

@each $fontsMap, $value in $fontsMap {
.font-#{$fontsMap} {
font-family: #{$value};
}
}
.fw-extralight {
font-weight: 100;
}
.fw-light {
font-weight: 300;
}
.fw-normal {
font-weight: 400;
}
.fw-medium {
font-weight: 500 !important;
}
.fw-semibold {
font-weight: 600 !important;
}
.fw-bold {
font-weight: 700;
}
.fw-extrabold {
font-weight: 800;
}
.fs-md {
font-size: 18px;
}
.fs-xs {
font-size: 14px;
}
.text-underline {
text-decoration: underline;
}