Files
flights_web_raw/apps/react/src/styles/_fonts.classes.scss
T
gnezim f8120c154f styles: copy global and component SCSS files from Angular to React
- Copy 30+ global SCSS files to apps/react/src/styles/
- Copy 75+ component SCSS files to apps/react/src/styles/components/
- Organize by feature: online-board, schedule, flights-map, popular-requests, shared, toolkit
- Organize pages styles: board, schedule, adaptive
- Update main.tsx to import styles entry point
2026-04-05 19:17:57 +03:00

39 lines
602 B
SCSS

// moved from _fonts.scss
h1 {
font-family: $font-family;
font-size: $font-size-xxxl;
font-weight: $font-regular;
}
h2 {
font-family: $font-family;
font-size: $font-size-xxl;
font-weight: $font-regular;
}
h3 {
font-family: $font-family;
font-size: $font-size-xl;
font-weight: $font-bold;
}
h4 {
font-family: $font-family;
font-size: $font-size-l;
font-weight: $font-regular;
}
h5 {
font-family: $font-family;
font-size: $font-size-m;
font-weight: $font-regular;
}
.text--white {
color: $white;
}
.embolded {
font-weight: 500;
}