From d3548f8a217cfa751d7b91d68f41142cc4dcb4fd Mon Sep 17 00:00:00 2001 From: Hippo Date: Sun, 29 Sep 2019 10:16:09 +0530 Subject: [PATCH] Scale up author header image when too small --- src/styles/app.css | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/styles/app.css b/src/styles/app.css index 8d2c86a..e84b5a8 100644 --- a/src/styles/app.css +++ b/src/styles/app.css @@ -998,6 +998,12 @@ h6 { overflow: hidden; } +.author-header-image img { + /* in case image is too small */ + height: inherit; + width: inherit; +} + .author-header-meta { display: flex; margin: 1rem 0 0 0;