mirror of
https://codeberg.org/rimu/pyfedi
synced 2025-01-23 19:36:56 -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;
|
||||
}
|
||||
|
||||
html, body {
|
||||
overscroll-behavior-x: none;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
|
|
@ -4,6 +4,10 @@
|
|||
@import "scss/typography";
|
||||
@import "scss/controls";
|
||||
|
||||
html, body {
|
||||
overscroll-behavior-x: none;
|
||||
}
|
||||
|
||||
body {
|
||||
font-size: 0.95rem;
|
||||
}
|
||||
|
@ -14,6 +18,7 @@ a {
|
|||
}
|
||||
|
||||
#outer_container, footer {
|
||||
//overscroll-behavior-x: none;
|
||||
a:not(.btn):hover {
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue