Skip to content
This repository has been archived by the owner on May 10, 2024. It is now read-only.

Commit

Permalink
fix: padding
Browse files Browse the repository at this point in the history
  • Loading branch information
danstarns committed Nov 12, 2023
1 parent 312111c commit ea50547
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions client/src/components/events.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@ export function Events() {
}, []);

return (
<div className="drop-shadow-lg w-full bg-white grow border-t-2 border-graphql-border p-20">
<div className="drop-shadow-lg w-full bg-white grow border-t-2 border-graphql-border py-10 md:py-20">
<Container>
<h2 className="text-3xl mb-10 font-bold">Events</h2>
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-20">
<div className="grid grid-cols-1 md:grid-cols-2 lg:grid-cols-3 gap-10 md:gap-20">
{events.map((event) => (
<a
href={event.eventLink}
Expand Down

0 comments on commit ea50547

Please sign in to comment.