From 11ea73ceb11f8764f30b31124aa5c80f0175218c Mon Sep 17 00:00:00 2001 From: domyen Date: Tue, 11 May 2021 19:42:41 -0400 Subject: [PATCH] Fix #262 iOS styling for stacked inputs --- src/components/Input.js | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/components/Input.js b/src/components/Input.js index 88a7ce0d..855d1d10 100644 --- a/src/components/Input.js +++ b/src/components/Input.js @@ -70,6 +70,8 @@ const getStackLevelStyling = (props) => { return css` border-top-left-radius: ${radius}px; border-top-right-radius: ${radius}px; + border-bottom-left-radius: 0; + border-bottom-right-radius: 0; ${stackLevelDefinedStyling} `; case 'middle': @@ -82,6 +84,8 @@ const getStackLevelStyling = (props) => { return css` border-bottom-left-radius: ${radius}px; border-bottom-right-radius: ${radius}px; + border-top-left-radius: 0; + border-top-right-radius: 0; margin-top: -1px; ${stackLevelDefinedStyling} `;