From cef3a073acb8ed9401f8a3866d813b6b85bc4f7f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Popovics=20Andr=C3=A1s?= Date: Mon, 20 Nov 2017 14:41:37 +0000 Subject: [PATCH] Fix login scroll-lesness issue (#2673) --- demo-shell/src/custom-style-dev.scss | 4 ++++ demo-shell/src/custom-style.scss | 4 ++++ 2 files changed, 8 insertions(+) diff --git a/demo-shell/src/custom-style-dev.scss b/demo-shell/src/custom-style-dev.scss index 18eb2e1e3a..37e7f1272f 100644 --- a/demo-shell/src/custom-style-dev.scss +++ b/demo-shell/src/custom-style-dev.scss @@ -30,3 +30,7 @@ body, html { font-family: mat-font-family($alfresco-typography); line-height: mat-line-height($alfresco-typography, body-1); } + +body { + overflow: auto; +} diff --git a/demo-shell/src/custom-style.scss b/demo-shell/src/custom-style.scss index 8dd59f1809..77dbb6e4dd 100644 --- a/demo-shell/src/custom-style.scss +++ b/demo-shell/src/custom-style.scss @@ -30,3 +30,7 @@ body, html { font-family: mat-font-family($alfresco-typography); line-height: mat-line-height($alfresco-typography, body-1); } + +body { + overflow: auto; +}