Skip to content

Commit

Permalink
Update tailwind classes
Browse files Browse the repository at this point in the history
  • Loading branch information
cgero-eth committed Sep 28, 2023
1 parent fb8d24c commit 7c1017c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/cards/cardTransfer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ type ValueProps = { isAddress: boolean };
const Value = styled.p.attrs<ValueProps>(({ isAddress }) => {
const className = isAddress
? 'font-bold text-ui-800'
: 'overflow-hidden font-bold text-ui-800 overflow-ellipsis whitespace-nowrap';
: 'overflow-hidden font-bold text-ui-800 text-ellipsis whitespace-nowrap';

return { className };
})<ValueProps>``;
2 changes: 1 addition & 1 deletion src/components/modal/modal.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ const ModalSubtitle = styled.div.attrs({
})``;

const ModalClose = styled(Close).attrs({
className: 'flex-shrink-0 text-ui-500 w-4 h-4 rounded-lg bg-ui-50 outline:none',
className: 'shrink-0 text-ui-500 w-4 h-4 rounded-lg bg-ui-50 outline:none',
})``;

const ModalOverlay = styled(Overlay).attrs(() => {
Expand Down

0 comments on commit 7c1017c

Please sign in to comment.