mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
* refactor(theme-chalk): scss css var namespace * fix(theme-chalk): compile getCssVar * fix(theme-chalk): more --el namespace replace & getCssVarWithDefault * fix(theme-chalk): use cssVarBlockName & cssVar rewrite button css vars * fix(theme-chalk): replace empty svg fill color with ns * chore: use cssVarName for --el-color-white * chore: fix namespace reactive * chore: use defaultNamespace
13 lines
275 B
SCSS
13 lines
275 B
SCSS
@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');
|
|
}
|