Files
lingji-work-fe/src/styles/font.scss

45 lines
936 B
SCSS
Raw Normal View History

2025-07-14 09:46:16 +08:00
@font-face {
font-family: 'Manrope-Regular';
src: url('@/assets/fonts/Manrope-Regular.ttf');
}
@font-face {
font-family: 'Manrope-Medium';
src: url('@/assets/fonts/Manrope-Medium.ttf');
}
2025-07-01 14:34:16 +08:00
2025-07-14 09:46:16 +08:00
@font-face {
font-family: 'Manrope-Bold';
src: url('@/assets/fonts/Manrope-Bold.ttf');
}
2025-07-01 14:34:16 +08:00
2025-07-14 09:46:16 +08:00
@font-face {
font-family: 'Manrope-SemiBold';
src: url('@/assets/fonts/Manrope-SemiBold.ttf');
}
.font-family-regular {
font-family: $font-family-regular;
}
.font-family-medium {
font-family: $font-family-medium;
}
.font-family-light {
font-family: $font-family-light;
}
.font-family-bold {
font-family: $font-family-bold;
}
.font-family-manrope-regular {
font-family: $font-family-manrope-regular;
}
.font-family-manrope-medium {
font-family: $font-family-manrope-medium;
}
.font-family-manrope-bold {
font-family: $font-family-manrope-bold;
}
.font-family-manrope-semiBold {
font-family: $font-family-manrope-semiBold;
}