From 176d0e2e77da1e6ef884b1aa2b624e1cbe0cc70a Mon Sep 17 00:00:00 2001 From: keyan Date: Thu, 28 Mar 2024 17:35:08 -0500 Subject: [PATCH] fix weird ios sticky behavior with virtual keyboard --- components/header.module.css | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/components/header.module.css b/components/header.module.css index a8270e10..7f2ecfeb 100644 --- a/components/header.module.css +++ b/components/header.module.css @@ -102,8 +102,9 @@ } .sticky { - position: sticky; + position: fixed; border-bottom: 1px solid var(--theme-toolbarActive); + width: 100vw; top: -1px; padding-top: 1px; background-color: var(--bs-body-bg);