We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cb069f1 commit 0ca847bCopy full SHA for 0ca847b
src/components/card/FeatureCard.jsx
@@ -4,7 +4,7 @@ function FeatureCard(props) {
4
const { icon, title, description } = props;
5
6
return (
7
- <div className="h-full col-span-6 xl:col-span-3 p-4 md:p-6 border drop-shadow-sm md:drop-shadow-lg bg-white rounded-lg flex flex-col md:gap-2">
+ <div className="min-h-72 col-span-6 xl:col-span-3 p-4 md:p-6 border drop-shadow-sm md:drop-shadow-lg bg-white rounded-lg flex flex-col md:gap-2">
8
<span className={`icon icon-medium text-blue-700 ${icon}`}></span>
9
<p className="text-lg font-semibold">{title}</p>
10
<p className="">{description}</p>
0 commit comments