Skip to content

Commit

Permalink
minor css fix
Browse files Browse the repository at this point in the history
  • Loading branch information
lucemans committed Jun 2, 2024
1 parent 59d4c54 commit 7d12e02
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/components/modals/VaultInfo.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ export const VaultInfo: FC<{ vaultId: bigint; onClose: () => void }> = ({
className="group flex justify-between"
>
<div className="flex items-center gap-2">
<div>{name}</div>
<div>{name}.eth</div>
<div className="text-text-secondary">
<NameExpiryDate name={name} />
</div>
Expand Down
2 changes: 1 addition & 1 deletion src/components/vaults/VaultEntry.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ export const VaultEntry: FC<{ vault: bigint }> = ({ vault }) => {
return (
<div>
<div
className="flex justify-between border-b border-border p-2"
className="flex justify-between border-b border-border p-2 hover:cursor-pointer hover:bg-background-secondary"
onClick={() => setIsOpen(true)}
>
<div>
Expand Down

0 comments on commit 7d12e02

Please sign in to comment.