Skip to content

Commit

Permalink
improve responsiveness
Browse files Browse the repository at this point in the history
  • Loading branch information
jakewheeler committed Dec 10, 2024
1 parent bbbf805 commit 93b2282
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/app/products/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function StandaloneProducts() {
<h2 className="font-['Public Sans'] text-[1.75rem] font-bold leading-[2.4rem] text-[#14333d] lg:ml-[-2rem]">
DIBBs-powered products
</h2>
<div className="mt-5 grid grid-cols-1 gap-10 md:grid-cols-2">
<div className="mt-5 grid grid-cols-1 gap-10 lg:grid-cols-2">
<ProductCard
title="eCR Viewer"
text="Makes it easier for public health staff to find relevant
Expand Down Expand Up @@ -103,7 +103,7 @@ function ProductCard({
}: ProductCardProps) {
return (
<RoundedBackground className="border-none !bg-white">
<div className="grid h-full max-w-[33.75rem] grid-cols-1 items-start">
<div className="grid h-full grid-cols-1 items-start lg:max-w-[33.75rem]">
{imgSrc ? (
<div>
<RoundedImage src={imgSrc} width="540" height="200" alt="" />
Expand Down

0 comments on commit 93b2282

Please sign in to comment.