Skip to content
Merged
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
17 changes: 17 additions & 0 deletions apps/site/app/globals.css
Original file line number Diff line number Diff line change
Expand Up @@ -67,6 +67,23 @@ a {
@apply border-white/10;
}

.requirements-grid {
display: grid;
grid-template-columns: 1fr;
}

@media (min-width: 768px) {
.requirements-grid {
grid-template-columns: repeat(3, 1fr);
}
}

@media (min-width: 1024px) {
.requirements-grid {
grid-template-columns: repeat(5, 1fr);
}
}

.text-balance {
text-wrap: balance;
}
Expand Down
4 changes: 2 additions & 2 deletions apps/site/app/install/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -114,11 +114,11 @@ export default async function InstallPage() {
<section className="pb-4">
<div className="page-shell">
<div className="surface-panel overflow-hidden p-0">
<div className="grid divide-y divide-white/10 md:grid-cols-4 md:divide-x md:divide-y-0">
<div className="requirements-grid gap-px bg-white/10">
{requirements.map((item, index) => (
<div
key={item}
className="group px-5 py-5 transition-colors hover:bg-cyan-300/[0.025] md:px-6 md:py-6"
className="group bg-white/[0.035] px-5 py-5 transition-colors hover:bg-cyan-300/[0.025] md:px-6 md:py-6"
>
<div className="mb-4 flex items-center justify-between">
<span className="font-mono text-[11px] font-semibold tracking-[0.22em] text-cyan-300/70">
Expand Down