diff options
| author | Fuwn <[email protected]> | 2026-02-10 01:40:42 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2026-02-10 01:40:42 -0800 |
| commit | d36e0decbf5552ee394e6168e2bb1b7171cfdda4 (patch) | |
| tree | 9f6030cda583af7d187c7ca5565b03d5633dcb63 | |
| parent | fix: remove typography mention from feature grid (diff) | |
| download | asa.news-d36e0decbf5552ee394e6168e2bb1b7171cfdda4.tar.xz asa.news-d36e0decbf5552ee394e6168e2bb1b7171cfdda4.zip | |
fix: widen feature grid to 4 columns on xl screens
| -rw-r--r-- | apps/web/app/(marketing)/_components/feature-grid.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/web/app/(marketing)/_components/feature-grid.tsx b/apps/web/app/(marketing)/_components/feature-grid.tsx index 5c5e880..3a52a5c 100644 --- a/apps/web/app/(marketing)/_components/feature-grid.tsx +++ b/apps/web/app/(marketing)/_components/feature-grid.tsx @@ -68,7 +68,7 @@ const FEATURES = [ export function FeatureGrid() { return ( - <div className="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3"> + <div className="grid grid-cols-1 gap-4 sm:grid-cols-2 lg:grid-cols-3 xl:grid-cols-4"> {FEATURES.map((feature) => ( <div key={feature.title} |