From 78e00a4c24bff6abc79d268e827cb7f15956407b Mon Sep 17 00:00:00 2001 From: Vadym Samoilenko Date: Thu, 4 Jun 2026 13:56:33 +0100 Subject: [PATCH] fix(dino): hero image height 100% to always fill section regardless of content length --- src/components/sections/DinoPageContent.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/sections/DinoPageContent.tsx b/src/components/sections/DinoPageContent.tsx index 21b468b..8afa502 100644 --- a/src/components/sections/DinoPageContent.tsx +++ b/src/components/sections/DinoPageContent.tsx @@ -296,7 +296,7 @@ const DYNO_CSS = ` .dino-page .hero{position:relative;overflow:hidden;padding-top:60px;} .dino-page .hero .wrap{position:relative;} .dino-page .hero-dino{ - position:absolute;top:12px;right:-60px;height:1096px;width:auto;max-width:none; + position:absolute;top:0;bottom:0;right:-60px;height:100%;width:auto;max-width:none; z-index:0;pointer-events:none; } .dino-page .hero-text{position:relative;z-index:2;max-width:608px;padding:60px 0 40px;}