From 966d6b230ea38aa9fb10dfc2fdcef89cc51580ba Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jos=C3=A9=20Rio?= Date: Wed, 11 Mar 2026 15:27:00 +0000 Subject: [PATCH] fix(button): fixed target area size for all button sizes (#31007) Issue number: resolves # --------- ## What is the current behavior? Now target area `min-height` for Ionic theme is set to the default size token size, which causes an issue when button size is **small**. ## What is the new behavior? By changing this to **inherit** target area will have now the parent height. ## Does this introduce a breaking change? - [ ] Yes - [X] No ## Other information --- core/src/components/button/button.ionic.scss | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/src/components/button/button.ionic.scss b/core/src/components/button/button.ionic.scss index 2a0abbf8a7..6958f06443 100644 --- a/core/src/components/button/button.ionic.scss +++ b/core/src/components/button/button.ionic.scss @@ -19,7 +19,7 @@ position: absolute; height: 100%; - min-height: globals.$ion-scale-1200; + min-height: inherit; transform: translateY(-50%);