diff options
| author | Track3 <pengliabc@live.cn> | 2019-10-27 20:36:43 +0800 |
|---|---|---|
| committer | Track3 <pengliabc@live.cn> | 2019-10-27 20:36:43 +0800 |
| commit | a39f22f28031b186986a7eb091072f66aff562a6 (patch) | |
| tree | 36d3edacf105e9d79c6f2e49712622cde6664f99 /assets | |
| parent | f6d80e44076044113cfcd5e55df2550a2daadc5a (diff) | |
| download | hermit-a39f22f28031b186986a7eb091072f66aff562a6.tar.gz | |
Fix homepage overflow (#107)
Home content area overflows when screen height is short:
Fixed by using min-height instead of fixed 100vh height.
Diffstat (limited to 'assets')
| -rw-r--r-- | assets/scss/style.scss | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/assets/scss/style.scss b/assets/scss/style.scss index 51143d4..09ee3bb 100644 --- a/assets/scss/style.scss +++ b/assets/scss/style.scss @@ -327,7 +327,7 @@ table { // #spotlight { display: flex; - height: 100vh; + min-height: 100vh; flex-direction: column; align-items: center; justify-content: center; |
