Skip to content

Commit d48afbc

Browse files
authoredDec 10, 2024··
Fix border-color on ActionList Group header (#5409)
* fix border color on header * Create popular-moose-end.md * test(vrt): update snapshots * Update packages/react/src/ActionList/Group.tsx --------- Co-authored-by: langermank <langermank@users.noreply.github.com>
1 parent 8642c60 commit d48afbc

8 files changed

+6
-1
lines changed
 

‎.changeset/popular-moose-end.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"@primer/react": patch
3+
---
4+
5+
Fix `border-color` on ActionList Group header

‎packages/react/src/ActionList/Group.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,7 @@ export const GroupHeading: React.FC<React.PropsWithChildren<ActionListGroupHeadi
164164
marginBottom: 2,
165165
borderTop: '1px solid',
166166
borderBottom: '1px solid',
167-
borderColor: 'neutral.muted',
167+
borderColor: 'var(--borderColor-muted)',
168168
}),
169169

170170
[`.ActionListGroupHeading`]: {

0 commit comments

Comments
 (0)
Please sign in to comment.