9356945d93
- Create helpers directory structure - Add api-helpers.ts with authentication and API mocking functions - Add ui-helpers.ts with common UI interaction utilities - Add data-helpers.ts with test data generators - Create base.spec.ts as reusable test template - Update support/index.ts to import and expose helper modules globally
49 lines
1.2 KiB
SCSS
49 lines
1.2 KiB
SCSS
@use './src/styles/colors' as *;
|
|
@use './src/styles/variables' as *;
|
|
@use './src/styles/fonts' as *;
|
|
@use './src/styles/screen' as *;
|
|
@use './src/styles/layouts' as *;
|
|
|
|
:host {
|
|
@include mobile() {
|
|
::ng-deep {
|
|
flight-actions {
|
|
flight-status-button {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|
|
|
|
.flight-route {
|
|
font-size: $font-size-xl3;
|
|
grid-template: auto auto auto / 100px auto;
|
|
grid-template-areas:
|
|
'depart-at depart-from'
|
|
'status status'
|
|
'arrive-at arrive-to';
|
|
|
|
time-group-legacy {
|
|
&:first-of-type {
|
|
grid-area: depart-at;
|
|
}
|
|
&:last-of-type {
|
|
grid-area: arrive-at;
|
|
}
|
|
}
|
|
|
|
.status-line {
|
|
grid-area: status;
|
|
}
|
|
|
|
station {
|
|
&:first-of-type {
|
|
grid-area: depart-from;
|
|
}
|
|
&:last-of-type {
|
|
grid-area: arrive-to;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|