From 9c1c72812a42f0f61c0cfd4e42ca7edc3cc54e21 Mon Sep 17 00:00:00 2001 From: Vitor Hideyoshi Nakazone Batista Date: Sat, 30 Dec 2023 01:24:08 -0300 Subject: [PATCH] Better Home Page Responsiveness --- src/app/home/home.component.css | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/src/app/home/home.component.css b/src/app/home/home.component.css index 0e44c53..d5b5f90 100644 --- a/src/app/home/home.component.css +++ b/src/app/home/home.component.css @@ -120,6 +120,7 @@ .stack-slider { height: 65%; + min-height: 425px; } @@ -138,3 +139,14 @@ height: 30%; } } + +@media only screen and (max-height: 750px) { + .stack-section { + height: fit-content; + } + + .stack-slider { + height: fit-content; + /*min-height: 425px;*/ + } +}