From a1429699866ee5ea4e60d9c4add6867e167bdf12 Mon Sep 17 00:00:00 2001 From: SyMind Date: Wed, 24 Mar 2021 17:28:51 +0800 Subject: [PATCH] fix(pagination): Unexpected input height (#29886) When use modifyVars to override the `input-height-base`, the quick jumper input height expected `input-height-base`, but not really. --- components/pagination/style/index.less | 2 ++ 1 file changed, 2 insertions(+) diff --git a/components/pagination/style/index.less b/components/pagination/style/index.less index bbc707b370..cb30fe3899 100644 --- a/components/pagination/style/index.less +++ b/components/pagination/style/index.less @@ -244,6 +244,7 @@ .input(); width: 50px; + height: @input-height-base; margin: 0 8px; } } @@ -353,6 +354,7 @@ .input-sm(); width: 44px; + height: @input-height-sm; } } }