Skip to content

Commit 5920079

Browse files
committed
ui make text dark
1 parent a657d3b commit 5920079

File tree

1 file changed

+13
-9
lines changed

1 file changed

+13
-9
lines changed

ui/src/app/bundles/[uuid]/page.tsx

Lines changed: 13 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -240,7 +240,7 @@ function TransactionDetails({
240240
<ExplorerLink
241241
type="address"
242242
value={tx.signer}
243-
className="font-mono"
243+
className="font-mono text-gray-900"
244244
>
245245
{tx.signer}
246246
</ExplorerLink>
@@ -255,7 +255,7 @@ function TransactionDetails({
255255
<ExplorerLink
256256
type="address"
257257
value={tx.to}
258-
className="font-mono"
258+
className="font-mono text-gray-900"
259259
>
260260
{tx.to}
261261
</ExplorerLink>
@@ -269,23 +269,25 @@ function TransactionDetails({
269269
<div className="border-t border-gray-100 px-5 py-3 bg-gray-50/50 grid grid-cols-4 gap-4 text-xs">
270270
<div>
271271
<span className="text-gray-500">Nonce</span>
272-
<span className="ml-2 font-medium">{parseInt(tx.nonce, 16)}</span>
272+
<span className="ml-2 font-medium text-gray-900">
273+
{parseInt(tx.nonce, 16)}
274+
</span>
273275
</div>
274276
<div>
275277
<span className="text-gray-500">Max Fee</span>
276-
<span className="ml-2 font-medium">
278+
<span className="ml-2 font-medium text-gray-900">
277279
{formatGasPrice(tx.maxFeePerGas)}
278280
</span>
279281
</div>
280282
<div>
281283
<span className="text-gray-500">Priority Fee</span>
282-
<span className="ml-2 font-medium">
284+
<span className="ml-2 font-medium text-gray-900">
283285
{formatGasPrice(tx.maxPriorityFeePerGas)}
284286
</span>
285287
</div>
286288
<div>
287289
<span className="text-gray-500">Type</span>
288-
<span className="ml-2 font-medium">
290+
<span className="ml-2 font-medium text-gray-900">
289291
{tx.type === "0x2" ? "EIP-1559" : tx.type}
290292
</span>
291293
</div>
@@ -330,17 +332,19 @@ function SimulationCard({ meter }: { meter: MeterBundleResponse }) {
330332
<div className="border-t border-gray-100 px-5 py-3 bg-gray-50/50 grid grid-cols-3 gap-4 text-xs">
331333
<div>
332334
<span className="text-gray-500">State Block</span>
333-
<span className="ml-2 font-medium">#{meter.stateBlockNumber}</span>
335+
<span className="ml-2 font-medium text-gray-900">
336+
#{meter.stateBlockNumber}
337+
</span>
334338
</div>
335339
<div>
336340
<span className="text-gray-500">Gas Fees</span>
337-
<span className="ml-2 font-medium">
341+
<span className="ml-2 font-medium text-gray-900">
338342
{formatHexValue(meter.gasFees)}
339343
</span>
340344
</div>
341345
<div>
342346
<span className="text-gray-500">ETH to Coinbase</span>
343-
<span className="ml-2 font-medium">
347+
<span className="ml-2 font-medium text-gray-900">
344348
{formatHexValue(meter.ethSentToCoinbase)}
345349
</span>
346350
</div>

0 commit comments

Comments
 (0)