CSS bug fixes and accessibility improvements #8

Merged
DorianNiemiecSVRJS merged 16 commits from main into main 2024-07-29 22:20:35 +02:00
Showing only changes of commit bf731b363d - Show all commits

View file

@ -86,7 +86,7 @@ const Testimonials = () => {
</span>
</h1>
<div className="wrapper columns-1 gap-5 md:columns-2 lg:columns-3 py-6 mt-6">
<ul className="wrapper columns-1 gap-5 md:columns-2 lg:columns-3 py-6 mt-6">
{testimonials.map((testimonial, idx) => (
<TestimonialCard
avatar={testimonial.avatar}
@ -97,7 +97,7 @@ const Testimonials = () => {
key={idx}
/>
))}
</div>
</ul>
</section>
);
};