fix: scss file compile error when using dart-sass

pull/20022/head
roojay 2020-08-07 17:52:16 +08:00
parent bf534d977e
commit 243917a250
1 changed files with 3 additions and 3 deletions

View File

@ -982,13 +982,13 @@ $--breakpoints: (
$--breakpoints-spec: ( $--breakpoints-spec: (
'xs-only' : (max-width: $--sm - 1), 'xs-only' : (max-width: $--sm - 1),
'sm-and-up' : (min-width: $--sm), '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), 'sm-and-down': (max-width: $--md - 1),
'md-and-up' : (min-width: $--md), '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), 'md-and-down': (max-width: $--lg - 1),
'lg-and-up' : (min-width: $--lg), '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), 'lg-and-down': (max-width: $--xl - 1),
'xl-only' : (min-width: $--xl), 'xl-only' : (min-width: $--xl),
); );