aboutsummaryrefslogtreecommitdiff
path: root/assets
diff options
context:
space:
mode:
authorTrack3 <pengliabc@live.cn>2019-10-27 20:36:43 +0800
committerTrack3 <pengliabc@live.cn>2019-10-27 20:36:43 +0800
commita39f22f28031b186986a7eb091072f66aff562a6 (patch)
tree36d3edacf105e9d79c6f2e49712622cde6664f99 /assets
parentf6d80e44076044113cfcd5e55df2550a2daadc5a (diff)
downloadhermit-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.scss2
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;