Skip to content

Commit

Permalink
small cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
noahlitvin committed Jan 14, 2025
1 parent 13032fa commit 48b658c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/website/src/features/Settings/CustomProviders.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -62,13 +62,13 @@ export default function CustomProviders() {
{settings.customProviders.map((url, index) => (
<div
key={index}
className="flex items-center justify-between px-3 py-1 rounded-lg bg-secondary overflow-x-auto max-w-full group"
className="flex items-center justify-between pl-3 pr-1 py-1 rounded-lg bg-accent/50 overflow-x-auto max-w-full group"
>
<div className="flex items-center gap-3 min-w-0 overflow-x-auto">
<span className="text-sm truncate whitespace-nowrap">{url}</span>
{findChainIdByUrl(url) ? (
<Badge
variant="outline"
variant="secondary"
className="shrink-0 opacity-50 px-1.5 whitespace-nowrap"
>
Chain ID: {findChainIdByUrl(url)}
Expand Down

0 comments on commit 48b658c

Please sign in to comment.