17 lines
278 B
SCSS
17 lines
278 B
SCSS
@import './theme/light.scss';
|
|
@import './theme/dark.scss';
|
|
|
|
%boxSizing {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
[class*="vxe-"] {
|
|
font-variant: tabular-nums;
|
|
font-feature-settings: 'tnum';
|
|
@extend %boxSizing;
|
|
&:after, &:before,
|
|
*:after, *:before {
|
|
@extend %boxSizing;
|
|
}
|
|
}
|