Skip to content

Commit

Permalink
fix(Charts): Fix circle styles for Charts. (#1578)
Browse files Browse the repository at this point in the history
Co-authored-by: Nikita Orliak <[email protected]>
  • Loading branch information
nikitaorliak-cengage and Nikita Orliak authored Nov 20, 2024
1 parent 0b78f03 commit 6869467
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 3 deletions.
5 changes: 5 additions & 0 deletions .changeset/a11y-charts-space-around-circle-nodes-missing.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@react-magma/charts': patch
---

fix(Charts): Fix circle styles for `Charts`.
6 changes: 3 additions & 3 deletions packages/charts/src/components/CarbonChart/CarbonChart.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -230,15 +230,15 @@ const CarbonChartWrapper = styled.div<{
drop-shadow( 1px 0px 0px ${props =>
props.isInverse
? props.theme.colors.primary600
: props.theme.colors.neutral100});
: props.theme.colors.neutral100})
drop-shadow(-1px 0px 0px ${props =>
props.isInverse
? props.theme.colors.primary600
: props.theme.colors.neutral100});
: props.theme.colors.neutral100})
drop-shadow( 0px 1px 0px ${props =>
props.isInverse
? props.theme.colors.primary600
: props.theme.colors.neutral100});
: props.theme.colors.neutral100})
drop-shadow( 0px -1px 0px ${props =>
props.isInverse
? props.theme.colors.primary600
Expand Down

2 comments on commit 6869467

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@github-actions
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.