@@ -44,20 +44,20 @@ export function GasPriceDropdown() {
4444
4545 return (
4646 < div className = "group relative" >
47- < div className = "flex cursor-pointer flex-row items-center gap-2 rounded-lg bg-[#FAFAFA] px-3 py-1 transition-all" >
47+ < div className = "flex cursor-pointer flex-row items-center gap-2 rounded-lg bg-[#FAFAFA] px-3 py-1 transition-all dark:bg-dark-palette-backgroundAlternate " >
4848 < span className = "animate-pulse text-palette-positive" >
4949 < Icon name = "blueCircle" color = "currentColor" height = "0.5rem" width = "0.5rem" />
5050 </ span >
5151 < div className = "flex items-center gap-1" >
52- < span className = "font-doto font-bold text-black" >
52+ < span className = "font-doto font-bold text-black dark:text-white " >
5353 { baseGasPriceInWei ? convertWeiToMwei ( baseGasPriceInWei ) : < > —</ > }
5454 </ span >
5555 < span className = "text-sm text-base-gray-200" > Mwei</ span >
5656 </ div >
5757 </ div >
5858 < div className = "absolute right-0 top-full hidden pt-2 lg:group-hover:inline-block" >
5959 < Card
60- innerClassName = "p-3 border border-base-black bg-white hover:bg-white font-sans text-[0.875rem]"
60+ innerClassName = "p-3 border border-base-black bg-white hover:bg-white dark:bg-dark-palette-backgroundAlternate hover:dark:bg-dark-palette-backgroundAlternate font-sans text-[0.875rem]"
6161 radius = { 9 }
6262 >
6363 < ul className = "flex flex-col gap-2 whitespace-nowrap" >
@@ -103,12 +103,12 @@ export function GasPriceDropdownItem() {
103103 } ) ;
104104
105105 return (
106- < div className = "flex cursor-pointer flex-row items-center gap-2 rounded-lg bg-[#FAFAFA] px-3 py-2 transition-all" >
106+ < div className = "flex cursor-pointer flex-row items-center gap-2 rounded-lg bg-[#FAFAFA] px-3 py-2 transition-all dark:bg-dark-palette-backgroundAlternate " >
107107 < span className = "animate-pulse text-palette-positive" >
108108 < Icon name = "blueCircle" color = "currentColor" height = "0.5rem" width = "0.5rem" />
109109 </ span >
110110 < div className = "flex items-center gap-1" >
111- < span className = "font-doto font-bold text-black" >
111+ < span className = "font-doto font-bold text-black dark:text-white " >
112112 { baseGasPriceInWei ? convertWeiToMwei ( baseGasPriceInWei ) : < > —</ > }
113113 </ span >
114114 < span className = "text-sm text-base-gray-200" > Mwei</ span >
0 commit comments