Skip to content

Commit

Permalink
Fix description container width
Browse files Browse the repository at this point in the history
  • Loading branch information
cannoneyed committed Nov 1, 2019
1 parent 9f00c9d commit 859b244
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,6 @@
}
.demo-description {
width: 400px;
padding: 4px;
}
Expand Down Expand Up @@ -255,7 +254,7 @@
{#each row as points}
<Preview
{points}
on:hover={e => hoveredPointIndex = e.detail}
on:hover={e => (hoveredPointIndex = e.detail)}
{hoveredPointIndex}
onClick={() => {}}
highlighted={true}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -238,7 +238,7 @@
{#each entries[key] as points}
<Preview
{points}
on:hover={e => hoveredPointIndex = e.detail}
on:hover={e => (hoveredPointIndex = e.detail)}
{hoveredPointIndex}
onClick={() => {}}
highlighted={true}
Expand Down

0 comments on commit 859b244

Please sign in to comment.