txtodo.app

[DORMANT] the official website of txtodo
git clone git://git.figbert.com/txtodo.app.git
Log | Files | Refs | README | LICENSE

commit 42e867e34e225b4972d438a42e06d5b2ca05fc49
parent f2395494a662659849f0f0c3c6f49d5394f56393
Author: FIGBERT <figbert@figbert.com>
Date:   Wed,  9 Dec 2020 23:41:11 -0800

Update CSS to hide overflow-x on mobile iOS

Diffstat:
Mpublic/main.css | 5++++-
1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/public/main.css b/public/main.css @@ -6,6 +6,10 @@ --border-color: #CBD5E0; } +body, html { + overflow-x: hidden; +} + body { color: var(--text-color); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji"; @@ -14,7 +18,6 @@ body { background-color: var(--bg-color-main); min-height: 100vh; width: 100vw; - overflow-x: hidden; } a {