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
13 lines
181 B
SCSS
13 lines
181 B
SCSS
@use '../../fonts';
|
|
@use '../../screen';
|
|
|
|
:host {
|
|
font-size: fonts.$font-size-xl2;
|
|
|
|
timeline {
|
|
@include screen.mobile {
|
|
display: none;
|
|
}
|
|
}
|
|
}
|