Skip to content

Commit

Permalink
Merge 7e8fad1 into d3146ce
Browse files Browse the repository at this point in the history
  • Loading branch information
langermank authored Aug 3, 2023
2 parents d3146ce + 7e8fad1 commit 23d04c9
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
5 changes: 5 additions & 0 deletions .changeset/shaggy-insects-march.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@primer/react": major
---

Ensure ActionList item has `border-radius` on hover with `full` variant
2 changes: 1 addition & 1 deletion src/ActionList/Item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ export const Item = React.forwardRef<HTMLLIElement, ActionListItemProps>(
lineHeight: TEXT_ROW_HEIGHT,
minHeight: 5,
marginX: listVariant === 'inset' ? 2 : 0,
borderRadius: listVariant === 'inset' ? 2 : 0,
borderRadius: 2,
transition: 'background 33.333ms linear',
color: getVariantStyles(variant, disabled).color,
cursor: 'pointer',
Expand Down

0 comments on commit 23d04c9

Please sign in to comment.