Skip to content

Commit 8eadc2d

Browse files
committed
fix styling
1 parent a8bff1e commit 8eadc2d

File tree

1 file changed

+2
-2
lines changed
  • src/components/swap/components/trade-details

1 file changed

+2
-2
lines changed

src/components/swap/components/trade-details/index.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ export const TradeDetails = (props: TradeDetailsProps) => {
5959
<Disclosure>
6060
{({ open }) => (
6161
<>
62-
<DisclosureButton className='border-ic-gray-200 w-full border px-5 py-4'>
62+
<DisclosureButton className='w-full px-5 py-4'>
6363
<div className='flex flex-1 items-center justify-between pr-1'>
6464
<div className='flex'>
6565
{showWarning && (
@@ -85,7 +85,7 @@ export const TradeDetails = (props: TradeDetailsProps) => {
8585
)}
8686
</div>
8787
</div>
88-
<div className={cn('flex', open && 'hidden')}>
88+
<div className={cn('flex items-center', open && 'hidden')}>
8989
{!isLoading &&
9090
props.selectedQuoteType === QuoteType.index && (
9191
<Tag label={'LI.FI'} />

0 commit comments

Comments
 (0)