Skip to content

Commit

Permalink
chore: fix close button sizing
Browse files Browse the repository at this point in the history
  • Loading branch information
DjordjeVujatovic committed Aug 9, 2023
1 parent 43adefc commit de83c74
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
4 changes: 2 additions & 2 deletions src/components/MintDialog/MintDialog.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -246,10 +246,10 @@ export const MintDialog: FC<{ size?: ButtonProps['size'] }> = ({ size }) => {
>
<Dialog.Close asChild>
<button
className="p-4 lg:p-0 bg-white rounded-full lg:rounded-none z-30 lg:inline-flex absolute top-[1.75rem] right-[1.75rem] lg:top-10 lg:right-10 appearance-none items-center justify-center"
className="p-[10px] lg:p-0 bg-white rounded-full lg:rounded-none z-30 lg:inline-flex absolute top-[1.75rem] right-[1.75rem] lg:top-10 lg:right-10 appearance-none items-center justify-center"
aria-label="Close"
>
<Close height={8} width={8} />
<Close height={20} width={20} />
<span className="sr-only">Close</span>
</button>
</Dialog.Close>
Expand Down
1 change: 0 additions & 1 deletion src/components/PartnerHero/PartnerHero.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
'use client'

import remarkGfm from 'remark-gfm'
import ReactMarkdown from 'react-markdown'
import { Drop, Partner } from '@/config/partners/types'
import Image from 'next/image'
Expand Down

0 comments on commit de83c74

Please sign in to comment.