(css) Allow scroll of login page on small screen

Fixes #4035
This commit is contained in:
Francis Lachapelle
2019-01-30 16:36:46 -05:00
parent 1de1de90f4
commit b30d2e0e00
2 changed files with 3 additions and 0 deletions

1
NEWS
View File

@@ -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

View File

@@ -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%;
}
}