Skip to content

Commit c253bd2

Browse files
committed
Fix styling
1 parent 3dd5b08 commit c253bd2

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

web/app/globals.css

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,7 @@ article a {
126126
transform: translateX(0);
127127
}
128128
100% {
129-
transform: translateX(-50%);
129+
transform: translateX(-33.3333%);
130130
}
131131
}
132132

web/app/page.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ export default function Home() {
1010
{ name: "OpenCode", logo: "/logo/opencode.png", href: "https://opencode.ai" },
1111
{ name: "Gemini CLI", logo: "/logo/gemini-cli.png", href: "https://geminicli.com" },
1212
];
13-
const scrollingAgents = [...agents, ...agents];
13+
const scrollingAgents = [...agents, ...agents, ...agents];
1414

1515
return (
1616
<div className="bg-white">
@@ -81,7 +81,7 @@ export default function Home() {
8181
href={agent.href}
8282
target="_blank"
8383
rel="noreferrer"
84-
className="flex items-center justify-center rounded-lg border border-gray-200 bg-white px-6 py-4 shadow-sm transition-transform"
84+
className="flex flex-shrink-0 items-center justify-center px-6 py-4 transition-transform"
8585
aria-hidden={index >= agents.length}
8686
>
8787
<img

0 commit comments

Comments
 (0)