Skip to content

Commit

Permalink
fix: Update BaseButton to use correct theming color for focus ring (#…
Browse files Browse the repository at this point in the history
…2942)

Fixes: #2940  

Addresses issue for theming the buttons in the `Pagination` component.

[category:Components]

Release Note:
Fixes theming for the `BaseButton` within `Pagination`.
  • Loading branch information
josh-bagwell authored Oct 2, 2024
1 parent 20e2b89 commit 1584124
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion modules/react/button/lib/BaseButton.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ const baseButtonStyles = createStyles({
width: 2,
separation: 2,
innerColor: cssVar(buttonVars.focus.boxShadowInner, base.frenchVanilla100),
outerColor: cssVar(buttonVars.focus.boxShadowOuter, brand.primary.base),
outerColor: cssVar(buttonVars.focus.boxShadowOuter, brand.common.focusOutline),
}),
},
'&:hover, &.hover': {
Expand Down

0 comments on commit 1584124

Please sign in to comment.