From 89434c2c8cda6fb66c69446c555de21e6c3d74dd Mon Sep 17 00:00:00 2001 From: Pouya Saadeghi Date: Tue, 1 Nov 2022 18:03:04 +0300 Subject: [PATCH] fix: #1267 --- src/components/unstyled/input.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/unstyled/input.css b/src/components/unstyled/input.css index 5613e760bca..3bfc006df7f 100644 --- a/src/components/unstyled/input.css +++ b/src/components/unstyled/input.css @@ -27,13 +27,13 @@ :where(span) { @apply flex items-center bg-base-300 px-4; } - :first-child { + > :first-child { border-top-left-radius: var(--rounded-btn, 0.5rem); border-top-right-radius: 0; border-bottom-left-radius: var(--rounded-btn, 0.5rem); border-bottom-right-radius: 0; } - :last-child { + > :last-child { border-top-left-radius: 0; border-top-right-radius: var(--rounded-btn, 0.5rem); border-bottom-left-radius: 0;