Skip to content

Commit

Permalink
Update VList.stories.tsx
Browse files Browse the repository at this point in the history
  • Loading branch information
inokawa committed Oct 27, 2023
1 parent ae7d2ae commit 23d719c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions stories/basics/VList.stories.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -327,7 +327,7 @@ export const Keyboard: StoryObj = {
<div
key={i}
style={{
height: 80,
height: 60,
borderBottom: "solid 1px #ccc",
background: selectedIndex === i ? "skyblue" : "white",
cursor: "pointer",
Expand All @@ -344,7 +344,7 @@ export const Keyboard: StoryObj = {
return (
<VList
ref={ref}
style={{ height: 600, width: 400, margin: 10 }}
style={{ height: 400, width: 400, margin: 10 }}
tabIndex={0}
onKeyDown={(e) => {
if (!ref.current) return;
Expand Down

0 comments on commit 23d719c

Please sign in to comment.