Files
flights_web/src/styles/_common.scss
T
gnezim 4c2b5c4bd1 Port global SCSS framework from Angular to React
Ports variables, colors, fonts, layout, mixins, shadows, screen
breakpoints, reset, icons, buttons, common, and overrides. Replaces
Angular-specific constructs (::ng-deep, :host, element selectors)
with React-compatible equivalents. Uses Google Fonts CDN for Roboto.
2026-04-15 17:29:17 +03:00

48 lines
695 B
SCSS

@use 'sass:math';
.expanded-indicator {
position: absolute;
top: 0;
left: 0;
bottom: 0;
width: math.div($space-xl, 3);
background-color: $blue-light;
@media (max-width: $media-breakpoint-mobile) {
width: math.div($space-xl, 6);
}
}
.flight-list-item {
cursor: pointer;
border-top: 1px solid $border;
&:hover {
background-color: $blue-extra-light;
}
&.selected {
background: $blue-extra-light;
position: relative;
}
}
.hide-button-label {
.p-button-label {
display: none;
}
}
.hidden {
display: none;
}
.banner--top {
z-index: 1001;
}
.wrapper-header {
z-index: 1002;
}