From c346eb8cb4bae62764f1219d3faee30f4344bf1c Mon Sep 17 00:00:00 2001 From: Emmanuel Mendez Date: Sun, 12 Jan 2025 03:57:38 -0400 Subject: [PATCH] style: update layout component to use 100svh for minimum height --- src/app/components/templates/layout/layout.component.css | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/components/templates/layout/layout.component.css b/src/app/components/templates/layout/layout.component.css index 1a2f0dd..300928c 100644 --- a/src/app/components/templates/layout/layout.component.css +++ b/src/app/components/templates/layout/layout.component.css @@ -1,5 +1,5 @@ :host { display: grid; - min-height: 100vh; + min-height: 100svh; grid-template-rows: auto 1fr auto; }