Files
flights_web_raw/apps/react/src/styles/components/toolkit/tab-button.component.scss
T
gnezim 64c919afa0 fix: correct SCSS relative import depths for nested components
- 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
2026-04-05 23:00:38 +03:00

24 lines
412 B
SCSS

@use '../../mixins';
@use '../../colors';
.tab-button {
@include mixins.button(colors.$blue-extra-light);
padding-bottom: 15px;
max-height: 48px;
width: 100%;
border-right: 1px solid colors.$border;
border-bottom: 1px solid colors.$border;
border-radius: 0;
&--active {
background-color: colors.$white;
border-bottom-color: colors.$white;
}
&--disabled {
opacity: 0.5;
}
}