Skip to content
Draft
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
4 changes: 3 additions & 1 deletion src/components/layout/cli-command.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -51,12 +51,14 @@ export function CliCommand() {
{tCommon("copied")}
</span>
<button
type="button"
aria-label={tCommon("copy")}
onClick={handleCopy}
onMouseEnter={() => setIsHovered(true)}
onMouseLeave={() => setIsHovered(false)}
className="group inline-flex cursor-pointer items-center gap-3 rounded-lg border border-zinc-700 bg-zinc-900 px-4 py-2.5 transition-all duration-300 hover:bg-zinc-800 dark:border-zinc-600 dark:bg-zinc-800 dark:hover:bg-zinc-700"
>
<Terminal className="h-4 w-4 shrink-0 text-green-400" />
<Terminal className="h-4 w-4 shrink-0 text-green-400" aria-hidden="true" />
<div className="relative flex h-5 items-center overflow-hidden">
{/* Grid container for smooth width animation */}
<div
Expand Down
2 changes: 2 additions & 0 deletions src/components/layout/notification-bell.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -128,6 +128,8 @@ export function NotificationBell() {
<span>{t("title")}</span>
{totalCount > 0 && (
<button
type="button"
aria-label={t("markAllRead")}
onClick={() => handleMarkAsRead()}
className="text-muted-foreground hover:text-foreground text-xs"
>
Expand Down
Loading