Skip to content

Commit

Permalink
Fix disabled zoom button color
Browse files Browse the repository at this point in the history
  • Loading branch information
rbardini committed Aug 18, 2024
1 parent 139201e commit 643fa27
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions hooks/use-chart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -89,6 +89,7 @@ export default function useChart(
background.setAll({ fill: color(white), stroke: color(gray100) })
background.states.create('hover', {}).setAll({ fill: color(gray200) })
background.states.create('down', {}).setAll({ fill: color(gray300) })
background.states.create('disabled', {}).setAll({ fill: color(gray100) })
})

const chart = root.container.children.push(
Expand Down

0 comments on commit 643fa27

Please sign in to comment.