fix responsive design and ensure consistency of elements

This commit is contained in:
2026-04-16 14:58:07 +02:00
parent fc2b481bd4
commit b717abb7de
8 changed files with 20 additions and 19 deletions
+2 -2
View File
@@ -6,10 +6,10 @@ type props = {
export const FeatureColumn = ({ imagePath, title, text }: props) => {
return (
<div className="flex flex-col items-center justify-start max-w-150 h-auto gap-7">
<div className="flex flex-col items-center justify-start max-w-100 h-auto gap-7">
<img className="w-33.75 h-33.75" src={imagePath} alt={`icon illustrating the text ${title}`} />
<div className="font-serif text-brand-brown text-center leading-[1.05] text-balance text-[clamp(2rem,5vw,30px)]">{title}</div>
<div className="font-sans text-base text-center w-3/5">{text}</div>
<div className="font-sans text-base text-center">{text}</div>
</div>
);
};