From 38b743b433922a3fd78f6001599214671722d11e Mon Sep 17 00:00:00 2001 From: Pouya Saadeghi Date: Tue, 22 Mar 2022 12:11:49 +0300 Subject: [PATCH] fix: #636 --- src/components/styled/button.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/components/styled/button.css b/src/components/styled/button.css index 2cde2213761..ef1e13a9311 100644 --- a/src/components/styled/button.css +++ b/src/components/styled/button.css @@ -213,10 +213,10 @@ outline: 2px solid hsl(var(--p)); } } - & > .btn:not(:first-child) { + & > .btn:not(:first-of-type) { @apply -ml-px rounded-l-none; } - & > .btn:not(:last-child) { + & > .btn:not(:last-of-type) { @apply rounded-r-none; } }