Skip to content

Commit

Permalink
fix footer to bottom for author list
Browse files Browse the repository at this point in the history
  • Loading branch information
mfenner committed Nov 23, 2021
1 parent 9fa3f77 commit ba399ae
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/Authors.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default function Authors({ authors, pagination }) {
</div>
<ul
role="list"
className="mx-auto list-none grid grid-cols-2 gap-x-4 gap-y-8 sm:grid-cols-4 md:gap-x-6 lg:max-w-5xl lg:gap-x-8 lg:gap-y-12 xl:grid-cols-6"
className="mx-auto list-none grid grid-cols-2 gap-x-4 gap-y-8 sm:grid-cols-4 md:gap-x-6 lg:max-w-5xl lg:gap-x-8 lg:gap-y-12 xl:grid-cols-6 min-h-screen"
>
{authors.map((author) => (
<li key={author.slug}>
Expand Down
2 changes: 1 addition & 1 deletion components/Tag.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ export default function Tag({ posts, tag, pagination }) {
alt=""
/>
</div>
<div className="flex-1 bg-white md:p-2 flex flex-col justify-between">
<div className="flex-1 bg-white p-2 flex flex-col justify-between">
<div className="flex-1 ">
<a
href={"/posts/" + post.slug}
Expand Down

1 comment on commit ba399ae

@vercel
Copy link

@vercel vercel bot commented on ba399ae Nov 23, 2021

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.