diff --git a/explorer/src/components/Navbar.tsx b/explorer/src/components/Navbar.tsx
index 116a9e7658..64eecb1ad2 100644
--- a/explorer/src/components/Navbar.tsx
+++ b/explorer/src/components/Navbar.tsx
@@ -1,5 +1,5 @@
import React from "react";
-import Logo from "img/logos-solana/light-explorer-logo.svg";
+import Logo from "img/logos-solana/dark-explorer-logo.svg";
import { clusterPath } from "utils/url";
import { Link, NavLink } from "react-router-dom";
import { ClusterStatusButton } from "components/ClusterStatusButton";
diff --git a/explorer/src/components/SearchBar.tsx b/explorer/src/components/SearchBar.tsx
index 7c0720f213..89b7190fa3 100644
--- a/explorer/src/components/SearchBar.tsx
+++ b/explorer/src/components/SearchBar.tsx
@@ -73,9 +73,7 @@ export function SearchBar() {
onChange={onChange}
onInputChange={onInputChange}
components={{ DropdownIndicator }}
- styles={{
- control: (styles) => ({ ...styles, borderRadius: "7px" }),
- }}
+ classNamePrefix="search-bar"
/>
diff --git a/explorer/src/components/TopAccountsCard.tsx b/explorer/src/components/TopAccountsCard.tsx
index 1b69349407..a4093bb3ef 100644
--- a/explorer/src/components/TopAccountsCard.tsx
+++ b/explorer/src/components/TopAccountsCard.tsx
@@ -114,7 +114,7 @@ const renderAccountRow = (
return (
- {index + 1}
+ {index + 1}
|
diff --git a/explorer/src/components/TransactionDetails.tsx b/explorer/src/components/TransactionDetails.tsx
index c667bf4e1c..4a8c50f43e 100644
--- a/explorer/src/components/TransactionDetails.tsx
+++ b/explorer/src/components/TransactionDetails.tsx
@@ -243,16 +243,16 @@ function AccountsCard({ signature }: Props) {
| {lamportsToSolString(post)} |
{index === 0 && (
- Fee Payer
+ Fee Payer
)}
{!message.isAccountWritable(index) && (
- Readonly
+ Readonly
)}
{index < message.header.numRequiredSignatures && (
- Signer
+ Signer
)}
{message.instructions.find((ix) => ix.programIdIndex === index) && (
- Program
+ Program
)}
|
diff --git a/explorer/src/components/instruction/InstructionCard.tsx b/explorer/src/components/instruction/InstructionCard.tsx
index 4fe4b552ce..523b5743fe 100644
--- a/explorer/src/components/instruction/InstructionCard.tsx
+++ b/explorer/src/components/instruction/InstructionCard.tsx
@@ -34,7 +34,7 @@ export function InstructionCard({