Skip to content

Commit

Permalink
docs: fix author name whitespace in related posts area (refinedev#3009)
Browse files Browse the repository at this point in the history
  • Loading branch information
salihozdemir authored Nov 16, 2022
1 parent e357f02 commit 13b3d32
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions documentation/src/components/blog/post-paginator/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ export const PostPaginator = ({ posts, title }) => {
<Link
to={`/blog/author/${post.authors[0]?.key}`}
itemProp="url"
className="self-end"
className="self-end flex-shrink-0"
>
<img
src={post.authors[0]?.imageURL}
Expand All @@ -39,7 +39,7 @@ export const PostPaginator = ({ posts, title }) => {
to={`/blog/author/${post.authors[0]?.key}`}
itemProp="url"
id="author-name"
className="text-color-base text-sm font-semibold"
className="text-color-base text-sm font-semibold whitespace-nowrap"
>
{post.authors[0]?.name}
</Link>
Expand Down

0 comments on commit 13b3d32

Please sign in to comment.