Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions src/components/Nav.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ export function TopNav({ isCollapsed }: NavProps) {

return (
<nav
className={`grid font-medium font-body ${isCollapsed ? 'gap-2' : ''}`}
className={`grid font-medium font-body ${isCollapsed ? 'gap-1' : ''}`}
role='navigation'
aria-label={t`Main navigation`}
>
Expand Down Expand Up @@ -148,7 +148,7 @@ export function BottomNav({ isCollapsed }: NavProps) {

return (
<nav
className={`grid font-medium font-body ${isCollapsed ? 'gap-2' : ''}`}
className={`grid font-medium font-body ${isCollapsed ? 'gap-1' : ''}`}
role='navigation'
aria-label={t`Secondary navigation`}
>
Expand Down Expand Up @@ -245,8 +245,8 @@ function NavLink({
(location.pathname === url ||
(url !== '/' && location.pathname.startsWith(url)));

const baseClassName = `flex items-center gap-3 rounded-lg py-1.5 transition-all ${
isCollapsed ? 'justify-center' : 'px-2'
const baseClassName = `flex items-center gap-3 transition-all ${
isCollapsed ? 'justify-center p-2 rounded-full' : 'px-2 rounded-lg py-1.5'
} text-lg md:text-base`;

const className = isActive
Expand Down
2 changes: 1 addition & 1 deletion src/pages/TokenList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ export function TokenList() {
</Tooltip>
</TooltipProvider>
</div>
<span className='text-primary'>
<span className='text-primary-foreground'>
<NumberFormat
value={totalUsdBalance}
style='currency'
Expand Down
Loading