From 48821cffcd69095507e7e4d7fe9fdb9b5b3ba3c5 Mon Sep 17 00:00:00 2001 From: Aleko Date: Wed, 21 Nov 2018 14:46:28 +0800 Subject: [PATCH] Col: fix the responsive bug caused by 'xs' variable (#13468) --- packages/theme-chalk/src/common/var.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/theme-chalk/src/common/var.scss b/packages/theme-chalk/src/common/var.scss index 315af8bdb..020d19347 100644 --- a/packages/theme-chalk/src/common/var.scss +++ b/packages/theme-chalk/src/common/var.scss @@ -691,7 +691,7 @@ $--lg: 1200px !default; $--xl: 1920px !default; $--breakpoints: ( - 'xs' : (max-width: $--sm), + 'xs' : (max-width: $--sm - 1), 'sm' : (min-width: $--sm), 'md' : (min-width: $--md), 'lg' : (min-width: $--lg),