Skip to content

Commit

Permalink
chore: add space between feeds grid and header
Browse files Browse the repository at this point in the history
  • Loading branch information
luigibarbato committed Jul 23, 2023
1 parent 24c9e32 commit 7cf33a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/Feeds.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ export interface FeedsProps {

export const Feeds = (props: FeedsProps) => {
return (
<div className="grid grid-cols-1 md:grid-cols-3 gap-4 justify-items-center">
<div className="mt-10 grid grid-cols-1 md:grid-cols-3 gap-4 justify-items-center">
{props.feeds.map((feed) => (
<a
key={feed.link}
Expand Down

0 comments on commit 7cf33a3

Please sign in to comment.