Add infinite scrolling cause zeppo is silly
All checks were successful
Build and Publish Docker Image / build-and-push (push) Successful in 1m57s

This commit is contained in:
Stephen Tafoya
2026-06-10 20:26:08 -06:00
parent 57a3847d18
commit 47a1ae92be
3 changed files with 161 additions and 11 deletions

View File

@@ -218,6 +218,30 @@ footer {
margin-top: 2rem;
}
.testimonial-viewport {
overflow: hidden;
max-height: 320px;
position: relative;
}
.testimonial-viewport::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
right: 0;
height: 48px;
background: linear-gradient(transparent, #151520);
pointer-events: none;
z-index: 1;
}
#testimonial-track {
display: flex;
flex-direction: column;
gap: 1rem;
}
@media (max-width: 600px) {
h1 { font-size: 3rem; }
.hero h2 { font-size: 2rem; }