Skip to content
Merged
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
6 changes: 3 additions & 3 deletions app/components/Hero.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -348,10 +348,10 @@ export default function Hero() {
initial={{ opacity: 0, x: -20 }}
animate={{ opacity: 1, x: 0 }}
exit={{ opacity: 0, x: -20 }}
className="flex flex-col gap-3 md:flex-row md:items-center"
className="flex flex-col gap-3 md:flex-row md:flex-wrap md:items-center"
>
{/* 第一行:主下载 + 展示全部 */}
<div className="flex items-center gap-3">
<div className="flex flex-shrink-0 items-center gap-3">
{/* 主下载按钮 - 自动检测系统 */}
Comment on lines +354 to 355
Copy link

Copilot AI Feb 8, 2026

Choose a reason for hiding this comment

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

For consistency with the rest of this file’s Tailwind classes (e.g. shrink-0 used elsewhere), consider using shrink-0 here instead of flex-shrink-0 (they’re equivalent in Tailwind).

Copilot uses AI. Check for mistakes.
<div className="relative flex-1 border-2 border-dashed border-[#d4a017]/50 p-[2px] md:flex-none dark:border-[#FFD000]/50">
<Button
Expand Down Expand Up @@ -444,7 +444,7 @@ export default function Hero() {
</div>

{/* 第二行:Mirror酱 */}
<div className="relative w-full border-2 border-dashed border-[#008fa6]/40 p-[2px] md:w-auto md:max-w-[320px] dark:border-[#00F0FF]/40">
<div className="relative w-full flex-shrink-0 border-2 border-dashed border-[#008fa6]/40 p-[2px] md:w-auto md:max-w-[320px] dark:border-[#00F0FF]/40">
Copy link

Copilot AI Feb 8, 2026

Choose a reason for hiding this comment

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

For consistency with other shrink-0 usages in this component, consider changing flex-shrink-0 to shrink-0 here as well.

Copilot uses AI. Check for mistakes.
<Button
variant="outline"
className="group relative h-16 w-full overflow-hidden border-none bg-transparent px-5 text-left text-sm leading-tight font-semibold tracking-normal text-[#008fa6] normal-case hover:bg-[#008fa6]/10 dark:text-[#00F0FF] dark:hover:bg-[#00F0FF]/10"
Expand Down
Loading