Skip to content

Commit

Permalink
style: minor dash updates (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
secondl1ght authored Oct 16, 2024
1 parent 214e8fd commit a01beb8
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/views/dashboard/Dashboard.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ export const Dashboard = () => {
}, [data, loading, error, value, push, setValue]);

return (
<div className="mx-auto w-full max-w-lg space-y-4 py-4 lg:space-y-6 lg:py-10">
<div className="mx-auto w-full max-w-lg space-y-6 py-4 lg:py-10">
{checkingId ? (
<Loader2 className="mx-auto size-4 animate-spin" />
) : view === 'default' ? (
Expand Down
4 changes: 3 additions & 1 deletion src/views/dashboard/RecentTransactions.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,9 @@ export const RecentTransactions: FC<{ id: string }> = ({ id }) => {
/>
))
) : (
<p className="font-semibold">{t('Wallet.no-results')}</p>
<p className="text-sm font-medium text-slate-600 dark:text-neutral-400">
{t('Wallet.no-results')}
</p>
)}
</>
)}
Expand Down

0 comments on commit a01beb8

Please sign in to comment.