@@ -104,7 +104,7 @@ const Deployments = () => {
104104 < div className = "mt-10 flex items-center justify-center gap-x-6" >
105105 < button
106106 onClick = { ( ) => window . location . reload ( ) }
107- className = "rounded-md bg-blue-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-sm hover:bg-blue-500"
107+ className = "rounded-md bg-blue-600 px-3.5 py-2.5 text-sm font-semibold text-white shadow-xs hover:bg-blue-500"
108108 >
109109 Please try again!
110110 </ button >
@@ -146,20 +146,20 @@ const Deployments = () => {
146146 ) ;
147147
148148 const showDeploymentsDiv = ( ) => (
149- < div className = "overflow-hidden rounded-lg shadow ring-1 ring-black ring-opacity-5 " >
150- < table className = "min-w-full divide-y divide-gray-300" >
149+ < div className = "ring-opacity-5 overflow-hidden rounded-lg ring-1 shadow-sm ring-gray-300 dark: ring-gray-700 " >
150+ < table className = "min-w-full divide-y divide-gray-300 dark:divide-gray-700 " >
151151 < thead className = "bg-gray-50 dark:bg-gray-700" >
152152 < tr >
153153 < th
154154 scope = "col"
155- className = "text-primary py-3.5 pl-4 pr-3 text-left text-sm font-semibold sm:pl-6"
155+ className = "text-primary py-3.5 pr-3 pl-4 text-left text-sm font-semibold sm:pl-6"
156156 >
157157 < div
158- className = "group inline-flex cursor-pointer rounded-md p-1 hover:bg-gray-200 hover: dark:bg-gray-700"
158+ className = "group inline-flex cursor-pointer rounded-md p-1 hover:bg-gray-200 dark:hover :bg-gray-700"
159159 onClick = { ( ) => onHeaderClick ( "name" ) }
160160 >
161161 Name
162- < span className = "text-primary ml-2 flex-none rounded" >
162+ < span className = "text-primary ml-2 flex-none rounded-sm " >
163163 < ChevronDownIcon className = "h-5 w-5" aria-hidden = "true" />
164164 </ span >
165165 </ div >
@@ -169,11 +169,11 @@ const Deployments = () => {
169169 className = "text-primary px-3 py-3.5 text-left text-sm font-semibold"
170170 >
171171 < div
172- className = "group inline-flex cursor-pointer rounded-md p-1 hover:bg-gray-200 hover: dark:bg-gray-700"
172+ className = "group inline-flex cursor-pointer rounded-md p-1 hover:bg-gray-200 dark:hover :bg-gray-700"
173173 onClick = { ( ) => onHeaderClick ( "chainId" ) }
174174 >
175175 Chain ID
176- < span className = "text-primary ml-2 flex-none rounded" >
176+ < span className = "text-primary ml-2 flex-none rounded-sm " >
177177 < ChevronDownIcon className = "h-5 w-5" aria-hidden = "true" />
178178 </ span >
179179 </ div >
@@ -183,16 +183,16 @@ const Deployments = () => {
183183 </ th >
184184 </ tr >
185185 </ thead >
186- < tbody className = "cursor-pointer divide-y divide-gray-200 bg-white" >
186+ < tbody className = "cursor-pointer divide-y divide-gray-300 bg-white dark:divide-gray-700 dark:bg-gray-800 " >
187187 { filteredDeployments . map ( ( deployment ) => (
188188 < tr
189189 key = { `${ deployment . chainId } -${ deployment . name } ` }
190- className = "group dark:bg-gray-800 "
190+ className = "group"
191191 onClick = { ( ) =>
192192 window . open ( deployment . urls [ 0 ] , "_blank" , "noopener,noreferrer" )
193193 }
194194 >
195- < td className = "text-primary flex flex-col whitespace-nowrap py-4 pl-4 pr-3 text-sm font-medium sm:pl-6" >
195+ < td className = "text-primary flex flex-col py-4 pr-3 pl-4 text-sm font-medium whitespace-nowrap sm:pl-6" >
196196 { deployment . name }
197197 { deployment . address && (
198198 < p className = "text-secondary text-xs font-normal" >
@@ -203,7 +203,7 @@ const Deployments = () => {
203203 </ p >
204204 ) }
205205 </ td >
206- < td className = "text-secondary whitespace-nowrap px-3 py-4 text-sm" >
206+ < td className = "text-secondary px-3 py-4 text-sm whitespace-nowrap " >
207207 { deployment . chainId }
208208 </ td >
209209 < td className = "relative pr-4" >
@@ -233,12 +233,12 @@ const Deployments = () => {
233233 const deploymentsTableDiv = ( ) => (
234234 < >
235235 < div className = "relative mb-4" >
236- < span className = "text-secondary pointer-events-none absolute right-4 top-1/2 -translate-y-1/2 transform text-xs opacity-60 dark:opacity-70" >
236+ < span className = "text-secondary pointer-events-none absolute top-1/2 right-4 -translate-y-1/2 transform text-xs opacity-60 dark:opacity-70" >
237237 { modifierKey } K
238238 </ span >
239239 < input
240240 type = "text"
241- className = "block w-full rounded-md border-gray-300 px-4 py-2 shadow-sm focus:border-blue-500 focus:ring-blue-500"
241+ className = "block w-full rounded-md border-gray-300 bg-white px-4 py-2 shadow-xs focus:border-blue-500 focus:ring-blue-500 dark:bg-gray-800 "
242242 placeholder = "Network name or chain ID..."
243243 value = { search }
244244 onChange = { ( e ) => setSearch ( e . target . value ) }
0 commit comments