Skip to content

Commit 13de7d8

Browse files
committed
fix(toolbar): fix styling
1 parent e7201fa commit 13de7d8

1 file changed

Lines changed: 17 additions & 3 deletions

File tree

src/viewer/src/components/Toolbar.tsx

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,9 @@ export default function Toolbar({
5757
return (
5858
<div className="toolbar">
5959
<Link href="/">
60-
<button type="button" className="button">Gallery</button>
60+
<button type="button" className="button">
61+
Gallery
62+
</button>
6163
</Link>
6264

6365
<div className="sep" />
@@ -83,11 +85,23 @@ export default function Toolbar({
8385
</button>
8486

8587
{isPlaying ? (
86-
<button type="button" className="button" onClick={onPause} disabled={!isLoaded} title="Pause playback">
88+
<button
89+
type="button"
90+
className="button"
91+
onClick={onPause}
92+
disabled={!isLoaded}
93+
title="Pause playback"
94+
>
8795
⏸️ Pause
8896
</button>
8997
) : (
90-
<button type="button" className="button" onClick={onPlay} disabled={!isLoaded} title="Start playback">
98+
<button
99+
type="button"
100+
className="button"
101+
onClick={onPlay}
102+
disabled={!isLoaded}
103+
title="Start playback"
104+
>
91105
▶️ Play
92106
</button>
93107
)}

0 commit comments

Comments
 (0)