diff options
author | ankitjavalkar | 2019-09-27 15:54:29 +0530 |
---|---|---|
committer | GitHub | 2019-09-27 15:54:29 +0530 |
commit | 429402d46bcd593c58c623589775aaeba1080b66 (patch) | |
tree | 680fc14550c65e9c4260e35bca66f81d5565fad4 /yaksh | |
parent | 0790b69b8ed38088c0225bb30152246c4ae62ea6 (diff) | |
parent | 4d1bdfe8ff2fd0c11d59d10181da0b57b9aedb4d (diff) | |
download | online_test-429402d46bcd593c58c623589775aaeba1080b66.tar.gz online_test-429402d46bcd593c58c623589775aaeba1080b66.tar.bz2 online_test-429402d46bcd593c58c623589775aaeba1080b66.zip |
Merge pull request #624 from CruiseDevice/overflow-x
Fix #574 Prevent browser from horizontal scrolling
Diffstat (limited to 'yaksh')
-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 { |