Skip to content

Commit 4db1cab

Browse files
committed
fix: better navbar responsible
1 parent 1734133 commit 4db1cab

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/components/ModeToggle.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ export function ModeToggle() {
77
const { theme, setTheme } = useTheme();
88

99
return (
10-
<div className="rounded-full border p-1">
10+
<div className="flex rounded-full border p-1">
1111
<Button
1212
variant={'link'}
1313
size={'none'}

src/components/navbar/NavBar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ export function Navbar() {
2121
<nav className="flex items-center justify-between py-6">
2222
<ChainLink to="/" className="-m-2 flex items-center gap-2 p-2 font-mono">
2323
<img src={iExecLogo} width="25" height="25" alt="iExec logo" />
24-
<span className="hidden sm:block">iExec Explorer</span>
24+
<span className="hidden lg:block">iExec Explorer</span>
2525
</ChainLink>
2626
<div className="mr-8 flex items-center gap-4 md:mr-0">
2727
{isConnected && (

0 commit comments

Comments
 (0)