Skip to content

Commit

Permalink
fix(ui): prevent language toggle from disappearing
Browse files Browse the repository at this point in the history
When loading the page with a anchor name in the url, the page might inadvertenly scroll up because the footer's height spills over the fold. Footer is set to overflow: hidden to prevent that.

Closes #11009
  • Loading branch information
AleksueiR committed Jun 4, 2015
1 parent de07502 commit ec4f2c8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/css/layout/base.less
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ main {

footer {
border-top: 0;
overflow: hidden;

.container {
width: 100%;
Expand All @@ -30,4 +31,4 @@ footer {
}

}
}
}

0 comments on commit ec4f2c8

Please sign in to comment.