64c919afa0
- Fixed all component SCSS files using single '../' to use '../../' to properly reach root styles directory - Replaced incorrect './src/styles/' absolute-style paths with proper relative paths - Fixed page directory imports with incorrect depth (../../../pages to ../../) - All files in src/styles/components/* now use '../../' to reach framework, colors, variables, etc - All files in src/styles/pages/* now use correct relative depth to reach sibling directories - 86 SCSS files corrected
36 lines
795 B
SCSS
36 lines
795 B
SCSS
@use '../../layouts' as *;
|
|
@use '../../colors' as *;
|
|
@use '../../variables' as *;
|
|
@use '../../fonts' as *;
|
|
@use '../../screen' as *;
|
|
|
|
:host {
|
|
@include v-spacing($space-m);
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
|
|
.detail-header-badge-flight-number {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
font-weight: $font-medium;
|
|
font-size: $font-size-xl;
|
|
@include h-spacing($space-m);
|
|
|
|
& > div {
|
|
@include v-spacing($space-s);
|
|
|
|
.description {
|
|
@include mobile() {
|
|
white-space: normal !important;
|
|
}
|
|
}
|
|
}
|
|
|
|
@include mobile() {
|
|
flex: 1;
|
|
justify-content: space-between;
|
|
}
|
|
}
|
|
}
|