Skip to content
Closed
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 components/navbar/FloatingNavbarClient.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -204,9 +204,9 @@ export default function FloatingNavbarClient({ techLatest = [], communityLatest
return (
<div className="flex items-center justify-between overflow-visible">
{/* Logo */}
<Link href="/" className="flex items-center gap-2 overflow-hidden z-50 w-[80px]">
<div className={`transition-all duration-300 w-[80px]`} style={{ height: '30px' }}>
<div className={`transition-all duration-300 translate-x-0`} style={{ width: '80px', height: '30px' }}>
<Link href="/" className="flex items-center gap-2 overflow-visible z-50 w-[80px]">
<div className="transition-all duration-300 w-[80px]" style={{ height: '30px' }}>
<div className="transition-all duration-300 translate-x-0" style={{ width: '80px', height: '30px' }}>
<Image src={sideBySideSvg} alt="Keploy Logo" className="h-[30px] w-[80px]" />
</div>
</div>
Expand Down Expand Up @@ -460,7 +460,7 @@ export default function FloatingNavbarClient({ techLatest = [], communityLatest
<div className="hidden xl:flex xl:border-2 xl:border-orange-400/80 rounded-full">
<Vscode />
</div>
<div className="hidden md:flex lg:border-2 lg:border-orange-400/80 rounded-full">
<div className="hidden lg:flex lg:border-2 lg:border-orange-400/80 rounded-full">
<GitHubStars />
Comment on lines +463 to 464
Copy link

Copilot AI Feb 24, 2026

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The change from hidden md:flex to hidden lg:flex for the GitHubStars container hides the stars button on medium breakpoints (md) and only shows it on large (lg+) screens. This behavior change isn’t described in the PR description (which focuses on the logo clipping), and it may be an unintended responsive regression—please either revert this breakpoint change or document/justify the new md behavior (and ensure it matches the intended design).

Copilot uses AI. Check for mistakes.
</div>
<Button asChild>
Expand Down