Commit ee2e2ae0 authored by UTCWebDev's avatar UTCWebDev

Prevent X-scroll on small screens

html overflow-x must be hidden to prevent accidental x-scroll on small screens. This is more apparent with touch screens, where the user often gestures diagonally instead of a true vertical gesture.
parent 5ce4b8c7
......@@ -2,6 +2,9 @@
* Style tweaks
* --------------------------------------------------
*/
html {
overflow-x: hidden;
}
body {
padding-top: 70px;
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment