Skip to content

Commit

Permalink
chore(tangle-dapp): Incoporate design reviews
Browse files Browse the repository at this point in the history
  • Loading branch information
AtelyPham committed Feb 11, 2025
1 parent bf436a2 commit e883ce8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ const VaultAssetsTable: FC<Props> = ({ data, isShown }) => {
title={pluralize('asset', data.length !== 1)}
className={twMerge(
isShown ? 'animate-slide-down' : 'animate-slide-up',
'bg-mono-20 dark:bg-mono-190 -mt-1',
'bg-mono-20 dark:bg-mono-180 -mt-1',
)}
/>
);
Expand Down
6 changes: 3 additions & 3 deletions apps/tangle-dapp/src/components/tables/Vaults/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import {
TableOptions,
useReactTable,
} from '@tanstack/react-table';
import { ChevronUp } from '@webb-tools/icons/ChevronUp';
import { ChevronDown } from '@webb-tools/icons/ChevronDown';
import Spinner from '@webb-tools/icons/Spinner';
import LsTokenIcon from '@webb-tools/tangle-shared-ui/components/LsTokenIcon';
import TableCellWrapper from '@webb-tools/tangle-shared-ui/components/tables/TableCellWrapper';
Expand Down Expand Up @@ -195,10 +195,10 @@ const getColumns = (nativeTokenSymbol: string) => [
<div
className={twMerge(
'!text-current transition-transform duration-300 ease-in-out',
row.getIsExpanded() ? 'rotate-180' : '',
row.getIsExpanded() ? '' : 'rotate-180',
)}
>
<ChevronUp className="!fill-current" />
<ChevronDown className="!fill-current" />
</div>
</Button>
</div>
Expand Down

0 comments on commit e883ce8

Please sign in to comment.