From 32607600320635cd88395d3ebe0b9bcc9c93505a Mon Sep 17 00:00:00 2001 From: Grayash Date: Mon, 2 Sep 2024 01:07:08 +0900 Subject: [PATCH] Add global CSS to set minimum height, webkit attribute for safari issue --- src/app/globals.css | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/src/app/globals.css b/src/app/globals.css index 54ff620..ea76cfc 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -5,3 +5,12 @@ .font-bagel-fat-one { font-family: var(--font-bagel-fat-one); } + +html, +body, +:root { + min-height: 100vh; + @supports (-webkit-appearance: none) and (stroke-color: transparent) { + min-height: -webkit-fill-available; + } +}