Skip to content

Commit

Permalink
fix button on mobile
Browse files Browse the repository at this point in the history
  • Loading branch information
CooperW824 committed Nov 5, 2024
1 parent 396ed32 commit 92e81f4
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions app/event/schedule/page.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,17 @@ export default function Page() {
return (
<div className="flex flex-col w-full h-fit min-h-screen items-center justify-center">
<NavBar showOnScroll={false} />
<div className="w-11/12 desktop:w-2/3 flex-grow flex-shrink basis-auto mt-28 desktop:mt-16">
<div className="flex w-full items-center justify-between">
<h1 className="text-3xl xs:text-4xl font-bold text-center">Schedule</h1>
<div className="w-11/12 desktop:w-2/3 flex-grow flex-shrink basis-auto mt-28 desktop:mt-16 ">
<div className="flex w-full items-center justify-center">
<HackRPILink
href="https://calendar.google.com/calendar/u/0?cid=ZGFkOGYzNGIzMjY1ZGQ2OTQzODFiODE2ODI4M2I4OGVlOTQ3M2EyZDgzMWVkNmYzODY3YzAzODE4NjhmNGIzMEBncm91cC5jYWxlbmRhci5nb29nbGUuY29t"
className="text-primary text-xl xs:text-2xl px-5 py-2"
className="text-primary text-xl lg:text-2xl px-5 py-2"
>
Export to Google Calendar
Google Calendar
</HackRPILink>
</div>
<div className="flex w-full items-center justify-between">
<h1 className="text-3xl xs:text-4xl font-bold text-center">Schedule</h1>
<p className="text-center font-bold text-xl xs:text-3xl">
{currentDateTime.toLocaleString(undefined, { dateStyle: "short", timeStyle: "short" })}
</p>
Expand Down

0 comments on commit 92e81f4

Please sign in to comment.