File tree Expand file tree Collapse file tree 3 files changed +9
-3
lines changed
src/app/(main)/community/events Expand file tree Collapse file tree 3 files changed +9
-3
lines changed Original file line number Diff line number Diff line change @@ -106,7 +106,7 @@ export function EventsList({
106106
107107 return (
108108 < div className = { className } >
109- < div className = "mb-8 flex items-end justify-between " >
109+ < div className = "flex justify-between gap-2 max-lg: flex-col-reverse lg:mb-8 lg:items-end " >
110110 < fieldset >
111111 < legend className = "typography-menu mt-2" > Event type</ legend >
112112 < div className = "mt-4 flex gap-3" >
Original file line number Diff line number Diff line change @@ -62,7 +62,7 @@ export default async function EventsPage() {
6262 </ p >
6363 </ div >
6464 < Button
65- className = "w-fit self-end lg:row-span-2"
65+ className = "w-fit self-end max-md:hidden lg:row-span-2"
6666 href = { ISSUE_TEMPLATE_LINK }
6767 >
6868 Add a new event
@@ -71,6 +71,9 @@ export default async function EventsPage() {
7171 < EventsList events = { upcomingEvents } >
7272 < SubscribeToRssLink />
7373 </ EventsList >
74+ < Button className = "md:hidden" href = { ISSUE_TEMPLATE_LINK } >
75+ Add a new event
76+ </ Button >
7477 </ section >
7578 ) }
7679
Original file line number Diff line number Diff line change @@ -2,7 +2,10 @@ import rssImage from "./rss.png"
22
33export function SubscribeToRssLink ( ) {
44 return (
5- < a href = "/community/events/feed.xml" className = "flex items-center" >
5+ < a
6+ href = "/community/events/feed.xml"
7+ className = "-mx-4 -my-2 flex items-center px-4 py-2 transition-colors hover:bg-neu-100 hover:duration-0 max-md:mb-6"
8+ >
69 < span > Subscribe to Events RSS</ span >
710 < img
811 src = { rssImage . src }
You can’t perform that action at this time.
0 commit comments