mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-05 04:37:47 +08:00
fix: correct sass map has-key parameter (#13132)
fix: correct map.has-key using
This commit is contained in:
parent
8558957b28
commit
06f974b311
@ -23,7 +23,7 @@ $breakpoints: (
|
||||
) !default;
|
||||
|
||||
@mixin respond-to($breakpoint) {
|
||||
@if #{map.has-key($breakpoints, $breakpoints)} {
|
||||
@if #{map.has-key($breakpoints, $breakpoint)} {
|
||||
@media screen and (min-width: #{map.get($breakpoints, $breakpoint)}) {
|
||||
@content;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user