mirror of https://github.com/ElemeFE/element
fix: scss file compile error when using dart-sass
parent
bf534d977e
commit
243917a250
|
@ -982,13 +982,13 @@ $--breakpoints: (
|
|||
$--breakpoints-spec: (
|
||||
'xs-only' : (max-width: $--sm - 1),
|
||||
'sm-and-up' : (min-width: $--sm),
|
||||
'sm-only': "(min-width: #{$--sm}) and (max-width: #{$--md - 1})",
|
||||
'sm-only': (min-width: #{$--sm}) and (max-width: #{$--md - 1}),
|
||||
'sm-and-down': (max-width: $--md - 1),
|
||||
'md-and-up' : (min-width: $--md),
|
||||
'md-only': "(min-width: #{$--md}) and (max-width: #{$--lg - 1})",
|
||||
'md-only': (min-width: #{$--md}) and (max-width: #{$--lg - 1}),
|
||||
'md-and-down': (max-width: $--lg - 1),
|
||||
'lg-and-up' : (min-width: $--lg),
|
||||
'lg-only': "(min-width: #{$--lg}) and (max-width: #{$--xl - 1})",
|
||||
'lg-only': (min-width: #{$--lg}) and (max-width: #{$--xl - 1}),
|
||||
'lg-and-down': (max-width: $--xl - 1),
|
||||
'xl-only' : (min-width: $--xl),
|
||||
);
|
||||
|
|
Loading…
Reference in New Issue