64c919afa0
- 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
24 lines
412 B
SCSS
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;
|
|
}
|
|
}
|