From ec4f2c8d737f2dc4b05324c1999ab4a446a1e457 Mon Sep 17 00:00:00 2001 From: Aleksuei Riabtsev Date: Thu, 4 Jun 2015 09:21:54 -0400 Subject: [PATCH] fix(ui): prevent language toggle from disappearing 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 --- src/css/layout/base.less | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/css/layout/base.less b/src/css/layout/base.less index cd14d05..421d346 100644 --- a/src/css/layout/base.less +++ b/src/css/layout/base.less @@ -21,6 +21,7 @@ main { footer { border-top: 0; + overflow: hidden; .container { width: 100%; @@ -30,4 +31,4 @@ footer { } } -} \ No newline at end of file +}