From cb5562d32e6922f7ab2eb32e3f62b88c20cdf73c Mon Sep 17 00:00:00 2001 From: jeffvli Date: Tue, 17 Mar 2026 21:25:18 -0700 Subject: [PATCH] decrease height of single feature carousel (#1850) --- .../feature-carousel/feature-carousel.module.css | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/src/renderer/components/feature-carousel/feature-carousel.module.css b/src/renderer/components/feature-carousel/feature-carousel.module.css index ffa40a81f..21ee99940 100644 --- a/src/renderer/components/feature-carousel/feature-carousel.module.css +++ b/src/renderer/components/feature-carousel/feature-carousel.module.css @@ -67,10 +67,19 @@ padding: var(--theme-spacing-md); } +.single-carousel-container .carousel { + min-height: 240px; +} + +.single-carousel-container .carousel-item { + min-height: 240px; +} + .single-carousel-container .carousel-item .content { flex-direction: row; - gap: var(--theme-spacing-lg); + gap: var(--theme-spacing-md); align-items: flex-end; + min-height: 240px; padding: var(--theme-spacing-xl); }