17 lines
		
	
	
		
			288 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
			
		
		
	
	
			17 lines
		
	
	
		
			288 B
		
	
	
	
		
			SCSS
		
	
	
	
	
	
@use './theme/light.scss';
 | 
						|
@use './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;
 | 
						|
  }
 | 
						|
}
 |