diff --git a/web/scss/_blog.scss b/web/scss/_blog.scss index 8bd1b903..077fd1bb 100644 --- a/web/scss/_blog.scss +++ b/web/scss/_blog.scss @@ -19,7 +19,7 @@ .post-header { margin-bottom: $spacing-vertical * 2; - min-height: 500px; + min-height: 100vh; @include background-size (cover); background-repeat: no-repeat; @@ -45,6 +45,12 @@ } } +@media (min-height: 500px) { + .post-header { + min-height: 500px; + } +} + .post-content { @@ -64,4 +70,4 @@ .post-author-spotlight { h3 { text-transform: uppercase; margin-top: $spacing-vertical / 4 !important; } -} \ No newline at end of file +}