From 499adf4a4ea52e743f1c27c8439545faa90928d0 Mon Sep 17 00:00:00 2001
From: Emile Bangma <github@emilebangma.com>
Date: Tue, 03 Jun 2025 17:51:38 +0000
Subject: [PATCH] fix(ios): mobile explorer overscroll behavior (#2008)
---
quartz/components/styles/explorer.scss | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/quartz/components/styles/explorer.scss b/quartz/components/styles/explorer.scss
index 002b086..8d94100 100644
--- a/quartz/components/styles/explorer.scss
+++ b/quartz/components/styles/explorer.scss
@@ -239,7 +239,7 @@
margin-top: 0;
background-color: var(--light);
max-width: 100vw;
- width: 100%;
+ width: 100vw;
transform: translateX(-100vw);
transition:
transform 200ms ease,
@@ -265,6 +265,6 @@
.mobile-no-scroll {
@media all and ($mobile) {
- overflow: hidden;
+ overscroll-behavior: none;
}
}
--
Gitblit v1.10.0