Skip to content

Commit e2e0e04

Browse files
committed
Fix navbar logo shrink problem
Signed-off-by: vasu kamani <vasukamani.ce@gmail.com>
1 parent f6b04ee commit e2e0e04

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

components/navbar/FloatingNavbarClient.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -204,9 +204,9 @@ export default function FloatingNavbarClient({ techLatest = [], communityLatest
204204
return (
205205
<div className="flex items-center justify-between overflow-visible">
206206
{/* Logo */}
207-
<Link href="/" className="flex items-center gap-2 overflow-hidden z-50 w-[80px]">
208-
<div className={`transition-all duration-300 w-[80px]`} style={{ height: '30px' }}>
209-
<div className={`transition-all duration-300 translate-x-0`} style={{ width: '80px', height: '30px' }}>
207+
<Link href="/" className="flex items-center gap-2 overflow-visible z-50 w-[80px]">
208+
<div className="transition-all duration-300 w-[80px]" style={{ height: '30px' }}>
209+
<div className="transition-all duration-300 translate-x-0" style={{ width: '80px', height: '30px' }}>
210210
<Image src={sideBySideSvg} alt="Keploy Logo" className="h-[30px] w-[80px]" />
211211
</div>
212212
</div>
@@ -460,7 +460,7 @@ export default function FloatingNavbarClient({ techLatest = [], communityLatest
460460
<div className="hidden xl:flex xl:border-2 xl:border-orange-400/80 rounded-full">
461461
<Vscode />
462462
</div>
463-
<div className="hidden md:flex lg:border-2 lg:border-orange-400/80 rounded-full">
463+
<div className="hidden lg:flex lg:border-2 lg:border-orange-400/80 rounded-full">
464464
<GitHubStars />
465465
</div>
466466
<Button asChild>

0 commit comments

Comments
 (0)