diff options
author | CruiseDevice | 2019-07-29 12:29:59 +0530 |
---|---|---|
committer | CruiseDevice | 2019-07-29 12:29:59 +0530 |
commit | 4d1bdfe8ff2fd0c11d59d10181da0b57b9aedb4d (patch) | |
tree | 22036bf24f0d503438bbf9899d915b70628a59b9 | |
parent | e3c6eb62c6e5ea509e194367db7d3de2986632a7 (diff) | |
download | online_test-4d1bdfe8ff2fd0c11d59d10181da0b57b9aedb4d.tar.gz online_test-4d1bdfe8ff2fd0c11d59d10181da0b57b9aedb4d.tar.bz2 online_test-4d1bdfe8ff2fd0c11d59d10181da0b57b9aedb4d.zip |
Fix #574 Prevent browser from horizontal scrolling
-rw-r--r-- | yaksh/static/yaksh/css/yakshcustom.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/yaksh/static/yaksh/css/yakshcustom.css b/yaksh/static/yaksh/css/yakshcustom.css index 4aba382..4daccaf 100644 --- a/yaksh/static/yaksh/css/yakshcustom.css +++ b/yaksh/static/yaksh/css/yakshcustom.css @@ -78,7 +78,7 @@ color: black; border-left: 0; border-right: 0; - border-color: transparent; + border-color: transparent; } #sidebar .list-group-item:hover { @@ -133,6 +133,11 @@ html { position: relative; min-height: 100%; + overflow-x: hidden; +} + +body{ + overflow-x: hidden; } .question-nav-bg { |