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
31 lines
499 B
SCSS
31 lines
499 B
SCSS
@use "src/styles/colors";
|
|
@use "src/styles/variables" as vars;
|
|
@use "src/styles/fonts";
|
|
@use "src/styles/screen";
|
|
|
|
.bottom-description-frame{
|
|
margin-top: 20px;
|
|
}
|
|
.bottom-description-container{
|
|
padding: 40px;
|
|
}
|
|
|
|
.bottom-description-title{
|
|
font-size: 20px;
|
|
font-weight: fonts.$font-regular;
|
|
}
|
|
|
|
.bottom-description-text{
|
|
margin-top: 20px;
|
|
line-height: 20px;
|
|
}
|
|
|
|
.bottom-description-text p {
|
|
margin: 0 0 8px;
|
|
}
|
|
|
|
.bottom-description-text p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|