mirror of
https://github.com/element-plus/element-plus.git
synced 2026-03-13 07:51:17 +08:00
fix: correct sass map has-key parameter (#13132)
fix: correct map.has-key using
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user