Skip to content

Commit c2e84a8

Browse files
committed
Better nav button styles
1 parent 0385c0d commit c2e84a8

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

packages/base/src/panelview/components/story-maps/StoryNavBar.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,18 +14,18 @@ function StoryNavBar({ onPrev, onNext, hasPrev, hasNext }: IStoryNavBarProps) {
1414
return (
1515
<div style={{ display: 'flex', gap: '8px', justifyContent: 'center' }}>
1616
<Button
17-
variant="outline"
1817
onClick={onPrev}
1918
disabled={!hasPrev}
2019
aria-label="Previous slide"
20+
style={{ border: '1px solid var(--jp-layout-color0)' }}
2121
>
2222
<ChevronLeft />
2323
</Button>
2424
<Button
25-
variant="outline"
2625
onClick={onNext}
2726
disabled={!hasNext}
2827
aria-label="Next slide"
28+
style={{ border: '1px solid var(--jp-layout-color0)' }}
2929
>
3030
<ChevronRight />
3131
</Button>

0 commit comments

Comments
 (0)