Skip to content

Commit

Permalink
tweak header
Browse files Browse the repository at this point in the history
  • Loading branch information
hdevalence committed Mar 21, 2024
1 parent d175295 commit 2de9c91
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion apps/minifront/src/components/header/constants.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ export const headerLinks: HeaderLink[] = [
},
{
href: PagePath.STAKING,
label: 'Staking',
label: 'Stake',
active: true,
mobileIcon: <TextAlignLeftIcon className='size-5 text-muted-foreground' />,
},
Expand Down
2 changes: 1 addition & 1 deletion apps/minifront/src/components/header/navbar.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ export const Navbar = () => {
const pathname = usePagePath();

return (
<nav className='hidden max-w-2xl gap-4 xl:flex xl:grow xl:justify-between'>
<nav className='hidden max-w-xl gap-4 xl:flex xl:grow xl:justify-between'>
{headerLinks.map(link =>
link.active ? (
<Link
Expand Down
1 change: 0 additions & 1 deletion packages/ui/components/ui/card.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ const Card = React.forwardRef<HTMLDivElement, CardProps>(
({ className, gradient, children, light, ...props }, ref) => {
const baseClasses = 'rounded-lg shadow-sm p-[30px] overflow-hidden';
const bgClasses = light ? 'bg-sky-200' : 'bg-charcoal';
console.log(light, bgClasses);
return (
<div
ref={ref}
Expand Down

0 comments on commit 2de9c91

Please sign in to comment.