From ba68a159791ae79c605014c18c7b07121d66ce7f Mon Sep 17 00:00:00 2001 From: Damian Stasik <920747+damianstasik@users.noreply.github.com> Date: Wed, 27 Sep 2023 09:39:51 +0200 Subject: [PATCH] Fix blog post's authors section on mobile resolutions (#183) --- src/theme/BlogPostItem/Header/Author/index.tsx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/theme/BlogPostItem/Header/Author/index.tsx b/src/theme/BlogPostItem/Header/Author/index.tsx index 07ab8f75..ecb88cfd 100644 --- a/src/theme/BlogPostItem/Header/Author/index.tsx +++ b/src/theme/BlogPostItem/Header/Author/index.tsx @@ -14,9 +14,9 @@ export default function BlogPostItemHeaderAuthor({ author }: Props) { const { name, title, url, imageURL, email } = author; const link = url || (email && `mailto:${email}`) || undefined; return ( -
+
{imageURL && ( - + {name} )}