File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
src/components/swap/components Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ export const SelectTokenModal = (props: SelectTokenModalProps) => {
40
40
const { balances } = useBalances ( props . address , tokenAddresses )
41
41
return (
42
42
< Dialog onClose = { onClose } open = { isOpen } className = 'relative z-50' >
43
- < DialogBackdrop className = 'fixed inset-0 bg-black/30 ' />
43
+ < DialogBackdrop className = 'bg-ic-black fixed inset-0 bg-opacity-60 backdrop-blur ' />
44
44
< div className = 'fixed inset-0 flex w-screen items-center justify-center p-4' >
45
45
< DialogPanel
46
46
className = { clsx (
Original file line number Diff line number Diff line change @@ -39,13 +39,13 @@ export const TransactionReviewModal = (props: TransactionReviewModalProps) => {
39
39
< div className = 'fixed inset-0 flex w-screen items-center justify-center p-4' >
40
40
< DialogPanel
41
41
className = { cn (
42
- 'bg-ic-white mx-4 my-0 rounded-3xl border border-zinc-700 dark:bg-[#18181b]' ,
42
+ 'bg-ic-white mx-4 my-0 max-w-md rounded-3xl border border-zinc-700 dark:bg-[#18181b]' ,
43
43
isDarkMode ? 'review' : '' ,
44
44
) }
45
45
>
46
46
{ modalTitle && (
47
47
< DialogTitle className = { cn ( isDarkMode ? 'dark' : '' ) } >
48
- < span className = 'text-ic-black dark:text-neutral-50' >
48
+ < span className = 'text-ic-black px-6 py-4 text-xl font-semibold dark:text-neutral-50' >
49
49
{ modalTitle }
50
50
</ span >
51
51
</ DialogTitle >
You can’t perform that action at this time.
0 commit comments