summaryrefslogtreecommitdiff
path: root/ui/app.css
diff options
context:
space:
mode:
authorKit La Touche <kit@transneptune.net>2024-11-28 21:54:15 -0500
committerKit La Touche <kit@transneptune.net>2024-11-28 21:54:15 -0500
commit810ebb811c40b50ddb95bb9559d7515f46ec2052 (patch)
tree993abbd49907b399af933a44fb40e2e88c6933a5 /ui/app.css
parentd23685c0ea46c92c75d43b6d6a361597241dd95e (diff)
parent5ce6c9f6277c43caf7413cce255af7bdc947e74c (diff)
Merge branch 'main' into wip/stylize
Diffstat (limited to 'ui/app.css')
-rw-r--r--ui/app.css10
1 files changed, 10 insertions, 0 deletions
diff --git a/ui/app.css b/ui/app.css
index b5c61c9..b316dea 100644
--- a/ui/app.css
+++ b/ui/app.css
@@ -1,3 +1,13 @@
@tailwind base;
@tailwind components;
@tailwind utilities;
+
+/* This should help minimize swipe-to-go-back behaviour, enabling our
+* swipe-to-reveal-channel-menu behaviour. It won't work in all cases; in iOS
+* Safari, when swiping from the screen edge, the OS gets th event and
+* handles it before the browser does.
+*/
+html,
+body {
+ overscroll-behavior-x: none;
+}