mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
3d1b3d4a58
* 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(footer) {
|
|
@include set-component-css-var('footer', $footer);
|
|
|
|
padding: getCssVar('footer-padding');
|
|
box-sizing: border-box;
|
|
flex-shrink: 0;
|
|
height: getCssVar('footer-height');
|
|
}
|