Files
flights_web_raw/apps/react/src/styles/_icons.scss
T
gnezim 9356945d93 Task 10: Create test helper files and base test templates
- 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
2026-04-05 19:19:49 +03:00

95 lines
1.3 KiB
SCSS

.p-accordion-header.p-highlight {
arrow-down-icon svg {
transform: rotate(0deg) !important;
}
}
.svg--plane {
width: 19px;
height: 19px;
fill: $blue;
}
.svg--change-city {
width: 25px;
height: 12px;
fill: $blue;
transform: rotate(90deg);
}
.svg--details__body {
width: 47.488px;
min-width: 47.488px;
height: 46.928px;
}
.flight-icon {
background-position: center center;
background-repeat: no-repeat;
background-size: 20px 20px;
}
.svg--share {
background-image: url('../assets/img/share.svg');
}
.svg--print {
background-image: url('../assets/img/print.svg');
}
.svg--pin {
background-image: url('../assets/img/pin-24.svg');
}
.svg--expand {
background-image: url('../assets/img/expand.svg');
}
svg {
&.green {
fill: $green;
}
&.red {
fill: $red;
}
&.orange {
fill: $orange;
}
&.blue {
fill: $blue;
}
}
.svg--calendar {
background-image: url('../assets/img/calendar.svg');
}
.svg--arrow {
width: 6.667px;
height: 3.333px;
}
.svg--close {
width: 14px;
height: 14px;
}
svg.flight-transfer {
width: 19.5px !important;
height: 6.5px !important;
}
svg.icon-return {
width: 13px;
height: 8px;
}
svg.icon-change {
width: 22px;
height: 12px;
}