From 4c1cd47ab0c5ea11520cac99a2bdb914d939fc30 Mon Sep 17 00:00:00 2001 From: prince-deriv Date: Wed, 6 Dec 2023 17:12:06 +0400 Subject: [PATCH] fix: border style --- libs/components/src/lib/accordion/base/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libs/components/src/lib/accordion/base/index.tsx b/libs/components/src/lib/accordion/base/index.tsx index 682c42e2c..b6b8b7f27 100644 --- a/libs/components/src/lib/accordion/base/index.tsx +++ b/libs/components/src/lib/accordion/base/index.tsx @@ -34,8 +34,8 @@ export const Base = ({ }; const dividerClassNames = { - both: 'border-x-none border-b-opacity-black-100 border-t-opacity-black-100', - bottom: 'border-b-opacity-black-100 !border-t-none', + both: 'border-x-none border-b-opacity-black-100 border-t-opacity-black-100 border-100', + bottom: 'border-b-opacity-black-100 !border-t-none border-100', none: '!border-t-none', };