style: Add CSS transitions for testimonial cards

This commit is contained in:
Paul Gauthier (aider) 2025-03-28 16:01:13 -10:00
parent e2bfdc444a
commit 775a9f86a1

View file

@ -237,6 +237,14 @@ aider --model o3-mini --api-key openai=&lt;key&gt;</code></pre>
</div>
</section>
<style>
.testimonial-card {
opacity: 1;
transform: translateY(0);
transition: opacity 0.4s ease, transform 0.4s ease;
}
</style>
<!--[[[cog
from scripts.badges import get_testimonials_js
text = get_testimonials_js()