Skip to content

Commit fbb7a25

Browse files
JoeMattclaude
andcommitted
polish: consistent card styling in StatusDashboard and TestFlightGate buttons
- StatusDashboard sections now use rounded-2xl + border border-gray-800 to match rest of site - TestFlightGate: add explicit border-gray-700 and text colors to outline buttons Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
1 parent 64c5cb1 commit fbb7a25

2 files changed

Lines changed: 7 additions & 7 deletions

File tree

src/app/status/StatusDashboard.tsx

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,7 @@ export default function StatusDashboard() {
8484
{loading && (
8585
<div className="space-y-4 animate-pulse">
8686
{[...Array(3)].map((_, i) => (
87-
<div key={i} className="bg-gray-900 rounded-xl h-32" />
87+
<div key={i} className="bg-gray-900 border border-gray-800 rounded-2xl h-32" />
8888
))}
8989
</div>
9090
)}
@@ -102,7 +102,7 @@ export default function StatusDashboard() {
102102

103103
{data && <>
104104
{/* Lighthouse */}
105-
<section className="bg-gray-900 rounded-xl p-6 space-y-4">
105+
<section className="bg-gray-900 border border-gray-800 rounded-2xl p-6 space-y-4">
106106
<div className="flex items-center justify-between">
107107
<h2 className="text-lg font-semibold">Lighthouse</h2>
108108
{lh?.report_url && (
@@ -127,7 +127,7 @@ export default function StatusDashboard() {
127127
</section>
128128

129129
{/* HTML & Links */}
130-
<section className="bg-gray-900 rounded-xl p-6">
130+
<section className="bg-gray-900 border border-gray-800 rounded-2xl p-6">
131131
<h2 className="text-lg font-semibold mb-4">HTML &amp; Links</h2>
132132
<div className="flex items-center gap-3">
133133
<StatusDot ok={data?.html_check.passed ?? null} />
@@ -142,7 +142,7 @@ export default function StatusDashboard() {
142142
</section>
143143

144144
{/* Security */}
145-
<section className="bg-gray-900 rounded-xl p-6 space-y-4">
145+
<section className="bg-gray-900 border border-gray-800 rounded-2xl p-6 space-y-4">
146146
<h2 className="text-lg font-semibold">Security</h2>
147147
<div className="space-y-3">
148148
<div className="flex items-center justify-between">

src/components/TestFlightGate.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,14 +73,14 @@ export default function TestFlightGate({ testflightUrl, skipGate }: TestFlightGa
7373
<button
7474
type="button"
7575
onClick={() => markPassed("follow")}
76-
className="inline-flex items-center justify-center rounded-md border px-4 py-2 text-sm font-medium hover:bg-gray-800 transition"
76+
className="inline-flex items-center justify-center rounded-md border border-gray-700 text-gray-300 px-4 py-2 text-sm font-medium hover:bg-gray-800 hover:text-white transition"
7777
>
7878
I followed
7979
</button>
8080
<button
8181
type="button"
8282
onClick={() => markPassed("skip")}
83-
className="inline-flex items-center justify-center rounded-md border px-4 py-2 text-sm font-medium hover:bg-gray-800 transition"
83+
className="inline-flex items-center justify-center rounded-md border border-gray-700 text-gray-500 px-4 py-2 text-sm font-medium hover:bg-gray-800 hover:text-gray-300 transition"
8484
>
8585
Proceed without following
8686
</button>
@@ -103,7 +103,7 @@ export default function TestFlightGate({ testflightUrl, skipGate }: TestFlightGa
103103
</a>
104104
<Link
105105
href="/"
106-
className="inline-flex items-center justify-center rounded-md border px-4 py-2 text-sm font-medium hover:bg-gray-800 transition"
106+
className="inline-flex items-center justify-center rounded-md border border-gray-700 text-gray-300 px-4 py-2 text-sm font-medium hover:bg-gray-800 hover:text-white transition"
107107
>
108108
Go home
109109
</Link>

0 commit comments

Comments
 (0)