1
2
3
4
5
6
7
8
9
10
11
12
| @use 'mixins/mixins' as *;
| @use 'mixins/var' as *;
| @use 'common/var' as *;
|
| @include b(header) {
| @include set-component-css-var('header', $header);
|
| padding: getCssVar('header-padding');
| box-sizing: border-box;
| flex-shrink: 0;
| height: getCssVar('header-height');
| }
|
|