mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-02-03 00:31:25 -08:00
Prevent side (y axis) overscrolling on iOS
This commit is contained in:
parent
8c9f91467b
commit
4cb4a9cbb2
2 changed files with 9 additions and 0 deletions
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
|
@ -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;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue