From 9732419a4de6d6399e306f6f5251c17e5e45f62f Mon Sep 17 00:00:00 2001 From: Jordan Welch Date: Thu, 11 Apr 2024 21:40:33 -0500 Subject: [PATCH] Fix Safari on iOS --- src/style.css | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/src/style.css b/src/style.css index b5c61c9..2a3c086 100644 --- a/src/style.css +++ b/src/style.css @@ -1,3 +1,10 @@ @tailwind base; @tailwind components; @tailwind utilities; + +/* Support Safri on iOS */ +@supports (-webkit-touch-callout: none) { + .min-h-screen { + min-height: -webkit-fill-available; + } +}