f8120c154f
- 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
39 lines
602 B
SCSS
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;
|
|
} |