Skip to content

Commit

Permalink
fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
amazingrando committed Sep 17, 2024
1 parent 1e83e78 commit 0eea7cb
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions src/pages/webinars/fall-2024.js
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ const Form = () => {
>
Register
</button>
<Arrow className="absolute bottom-[-40px] left-[-140px] w-[150px] fill-emulsifyBlue-800 dark:fill-emulsifyBlue-100" />
<Arrow className="absolute bottom-[-40px] left-[-140px] hidden w-[150px] fill-emulsifyBlue-800 dark:fill-emulsifyBlue-100 lg:block" />
</div>
</form>
) : (
Expand Down Expand Up @@ -220,7 +220,7 @@ export default function Index() {
</Head>

<div className={classNames('', 'dark:bg-gradient-to-b')}>
<div className="absolute min-h-[100vw] w-screen overflow-x-hidden ">
<div className="absolute min-h-screen w-screen overflow-x-hidden md:min-h-[100vw] ">
<div className="webinar-gradient absolute top-0" />
</div>

Expand Down Expand Up @@ -252,7 +252,7 @@ export default function Index() {
</div>

<section className="relative z-20">
<Prose className="prose-emulsify mx-auto mb-52 !max-w-3xl px-5 py-10 ">
<Prose className="prose-emulsify mx-auto mb-16 !max-w-3xl px-5 py-10 ">
<Form />

<p className="lead">
Expand Down Expand Up @@ -345,9 +345,9 @@ export default function Index() {
{presenters.map((presenter, i) => (
<div
className={classNames(
'not-prose flex items-center gap-6',
{ 'flex-row': i % 2 === 0 },
{ 'flex-row-reverse': i % 2 !== 0 },
'not-prose flex md:items-center gap-6 mt-8',
{ 'flex-col md:flex-row': i % 2 === 0 },
{ 'flex-col md:flex-row-reverse': i % 2 !== 0 },
)}
>
<Image
Expand Down

0 comments on commit 0eea7cb

Please sign in to comment.