mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-27 17:45:40 -05:00
Fix #3388
Overflow: hidden was cutting of info in the play view. Without it in the new home page, though, infinite banners would expand the size of the page. Tried figuring out a way to not make the new page require hiding overflow but found no obvious solution. Pages with infinite banners will just need to be set to overflow: hidden individually.
This commit is contained in:
parent
9f3b177574
commit
3c3db79ac1
2 changed files with 2 additions and 3 deletions
|
@ -1,9 +1,6 @@
|
|||
@import "app/styles/bootstrap/variables"
|
||||
@import "app/styles/mixins"
|
||||
|
||||
#page-container
|
||||
overflow: hidden
|
||||
|
||||
// https://github.com/twbs/bootstrap/issues/9237 -- need a version that's not !important
|
||||
.secret
|
||||
display: none
|
||||
|
|
|
@ -203,6 +203,8 @@ $forest: #20572B
|
|||
|
||||
#new-home-view
|
||||
|
||||
overflow: hidden
|
||||
|
||||
#jumbotron-container-fluid
|
||||
background-image: url("/images/pages/home/character_jumbotron.png")
|
||||
background-position: 50% 55%
|
||||
|
|
Loading…
Reference in a new issue