diff --git a/NEWS b/NEWS index 586fbb9c7..9c1ecbf33 100644 --- a/NEWS +++ b/NEWS @@ -10,6 +10,7 @@ Bug fixes - [web] fixed refresh of drafts folder when saving a draft - [web] fixed CAS session timeout handling during XHR requests (#4468) - [web] reflect active locale in HTML lang attribute (#4660) + - [web] allow scroll of login page on small screen (#4035) - [core] ignore transparent events in time conflict validation (#4539) - [core] fixed yearly recurrence calculator when starting from previous year diff --git a/UI/WebServerResources/scss/views/LoginUI.scss b/UI/WebServerResources/scss/views/LoginUI.scss index 7b7ca27fc..3f3139ac0 100644 --- a/UI/WebServerResources/scss/views/LoginUI.scss +++ b/UI/WebServerResources/scss/views/LoginUI.scss @@ -36,11 +36,13 @@ $sg-login-width: grid-step(5); & { // Fill the screen min-height: 100%; + overflow: auto; } .sg-logo { img { margin: auto; height: 100%; + max-height: 20vh; // limit the logo's height max-width: 75%; } }