File tree Expand file tree Collapse file tree 1 file changed +8
-5
lines changed
src/components/swap/components/transaction-review Expand file tree Collapse file tree 1 file changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -35,7 +35,7 @@ export const TransactionReviewModal = (props: TransactionReviewModalProps) => {
35
35
open = { tradeState . context . isModalOpen }
36
36
className = 'relative z-50'
37
37
>
38
- < DialogBackdrop className = 'fixed inset-0 bg-black/30 ' />
38
+ < DialogBackdrop className = 'bg-ic-black fixed inset-0 bg-opacity-60 backdrop-blur ' />
39
39
< div className = 'fixed inset-0 flex w-screen items-center justify-center p-4' >
40
40
< DialogPanel
41
41
className = { cn (
@@ -44,10 +44,13 @@ export const TransactionReviewModal = (props: TransactionReviewModalProps) => {
44
44
) }
45
45
>
46
46
{ modalTitle && (
47
- < DialogTitle className = { cn ( isDarkMode ? 'dark' : '' ) } >
48
- < span className = 'text-ic-black px-6 py-4 text-xl font-semibold dark:text-neutral-50' >
49
- { modalTitle }
50
- </ span >
47
+ < DialogTitle
48
+ className = { cn (
49
+ 'text-ic-black px-6 py-4 text-xl font-semibold dark:text-neutral-50' ,
50
+ isDarkMode ? 'dark' : '' ,
51
+ ) }
52
+ >
53
+ { modalTitle }
51
54
</ DialogTitle >
52
55
) }
53
56
You can’t perform that action at this time.
0 commit comments