Prevent side (y axis) overscrolling on iOS

This commit is contained in:
rimu 2024-03-29 02:28:00 +00:00
parent 8c9f91467b
commit 4cb4a9cbb2
2 changed files with 9 additions and 0 deletions

View file

@ -426,6 +426,10 @@ fieldset legend {
background-color: #d8e5ee; background-color: #d8e5ee;
} }
html, body {
overscroll-behavior-x: none;
}
body { body {
font-size: 0.95rem; font-size: 0.95rem;
} }

View file

@ -4,6 +4,10 @@
@import "scss/typography"; @import "scss/typography";
@import "scss/controls"; @import "scss/controls";
html, body {
overscroll-behavior-x: none;
}
body { body {
font-size: 0.95rem; font-size: 0.95rem;
} }
@ -14,6 +18,7 @@ a {
} }
#outer_container, footer { #outer_container, footer {
//overscroll-behavior-x: none;
a:not(.btn):hover { a:not(.btn):hover {
text-decoration: underline; text-decoration: underline;
} }