Skip to content

Commit

Permalink
style update
Browse files Browse the repository at this point in the history
  • Loading branch information
koustov committed May 22, 2023
1 parent 9894d36 commit d6991bd
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions components/MediaLayout.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ const MediaLayout = ({ reactPlayLive, twitterSpaces, title, id }) => {
</div>
)}
</h1>
<div className="flex flex-col lg:grid lg:grid-cols-3 justify-center items-center gap-10 lg:gap-20">
<div className="flex flex-col lg:grid lg:grid-cols-3 justify-center items-center gap-10 lg:gap-20 py-8">
{reactPlayLive?.map((el) => (
<iframe
key={el.id}
Expand Down Expand Up @@ -71,7 +71,7 @@ const MediaLayout = ({ reactPlayLive, twitterSpaces, title, id }) => {
{/* link to rest of the media */}
{twitterSpaces && twitterSpaces.length ? null : (
<button
className={`font-sans font-black text-2xl py-16 decoration-cyan-400 underline transition-shadow ${
className={`font-sans font-black text-2xl py-8 decoration-cyan-400 underline transition-shadow ${
reactPlayLive && "text-white"
}`}
>
Expand Down
2 changes: 1 addition & 1 deletion components/event/EventCard.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import React from "react";

function EventCard({ event }) {
return (
<Link href={event.link || `/events/${event.id}/${event.link}`}>
<Link href={event.link || `/events/${event.id}/${event.name}`}>
<a target={event.external ? "_blank" : undefined}>
<article className="w-[360px] cursor-pointer hover:scale-105 transition-all">
<div className="bg-[#010426] py-28 px-8 rounded-3xl h-[300px] w-[360px]">
Expand Down

0 comments on commit d6991bd

Please sign in to comment.