Files
flights_web_raw/apps/react/src/styles/_shadows.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

20 lines
507 B
SCSS

@use './colors' as colors;
@use './variables' as variables;
@mixin box-shadow-small {
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
@mixin box-shadow-big {
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
}
@mixin box-shadow--focus-inset {
box-shadow: inset 0 0 0 0.2em colors.$focus-shadow !important;
}
@mixin control-border-shadow {
border: 1px solid colors.$border-input;
border-radius: variables.$border-radius;
box-shadow: 0 2px 2px transparentize($color: #b1b1b1, $amount: 0.84);
}