Files
Keith Solomon df6e8cd7ef
Deploy to Dreamhost (dev) / build (push) Successful in 2m34s
Sync TODOs with Issues / sync_todos (push) Successful in 6s
🐞 fix: Add gradient fade for logo scroller track
2026-06-20 21:11:04 -05:00

25 lines
604 B
CSS

/* Misc block styles */
.logo-soup.layout-carousel {
/* Apply a gradient mask that fades 40px on both the left and right sides */
mask-image: linear-gradient(
to right,
transparent 0px,
black 40px,
black calc(100% - 40px),
transparent 100%
);
-webkit-mask-image: linear-gradient(
to right,
transparent 0px,
black 40px,
black calc(100% - 40px),
transparent 100%
);
/* Ensures the mask doesn't break scrolling functionality */
mask-composite: intersect;
-webkit-mask-composite: intersect;
}