Fix homepage overflow (#107)

Home content area overflows when screen height is short:
Fixed by using min-height instead of fixed 100vh height.
This commit is contained in:
Track3 2019-10-27 20:36:43 +08:00
parent f6d80e4407
commit a39f22f280
5 changed files with 3 additions and 17 deletions

View file

@ -327,7 +327,7 @@ table {
//
#spotlight {
display: flex;
height: 100vh;
min-height: 100vh;
flex-direction: column;
align-items: center;
justify-content: center;