From d739bb52a49bea00db879a0d2783dc30c9df41c3 Mon Sep 17 00:00:00 2001 From: Phoenix Eve Aspacio Date: Tue, 22 Aug 2017 18:49:49 +0800 Subject: [PATCH] Fixed z-index bug with header social links on author page (#370) no issue - add z-index to `.author-bio` and `.author-meta` so they aren't covered by the header image overlay --- assets/css/screen.css | 2 ++ 1 file changed, 2 insertions(+) diff --git a/assets/css/screen.css b/assets/css/screen.css index b9e5cd7..784bbf4 100644 --- a/assets/css/screen.css +++ b/assets/css/screen.css @@ -1528,6 +1528,7 @@ Usage (In Ghost editor): .site-header-content .author-bio { flex-shrink: 0; + z-index: 10; max-width: 600px; margin: 5px 0 10px 0; font-size: 2rem; @@ -1539,6 +1540,7 @@ Usage (In Ghost editor): .site-header-content .author-meta { flex-shrink: 0; + z-index: 10; display: flex; justify-content: center; align-items: center;