Skip to content

Commit

Permalink
fix(RadioButtonGroup): add focus state (#1541)
Browse files Browse the repository at this point in the history
## 📝 Changes

Please provide a brief summary of the changes made and why they were
made.

Include any notes, screenshots, or videos that may be helpful for
developers reviewing this pull request.

## ✅ Checklist

Easy UI has certain UX standards that must be met. In general,
non-trivial changes should meet the following criteria:

- [x] Visuals match Design Specs in Figma
~- [ ] Stories accompany any component changes~
- [x] Code is in accordance with our style guide
- [x] Design tokens are utilized
~- [ ] Unit tests accompany any component changes~
~- [ ] TSDoc is written for any API surface area~
~- [ ] Specs are up-to-date~
~- [ ] Console is free from warnings~
~- [ ] No accessibility violations are reported~
- [x] Cross-browser check is performed (Chrome, Safari, Firefox)
- [x] Changeset is added

~Strikethrough~ any items that are not applicable to this pull request.
  • Loading branch information
Brattin11 authored Dec 18, 2024
1 parent 80551cc commit 1b5a813
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/polite-hounds-mate.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"@easypost/easy-ui": patch
---

fix(RadioButtonGroup): add focus state
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,9 @@
color: design-token("color.neutral.600");
border-color: design-token("color.neutral.300");
}

&[data-focus-visible] {
z-index: 3;
box-shadow: design-token("shadow.button");
}
}

0 comments on commit 1b5a813

Please sign in to comment.