Skip to content

Commit

Permalink
Merge pull request #343 from teberl/bugfix/342-radio-button-component
Browse files Browse the repository at this point in the history
Bugfix/342 radio button component
  • Loading branch information
klaidigorishti authored Aug 18, 2021
2 parents c7066a8 + beababe commit 99d94d1
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Precise UI Changelog

## 1.6.2

- Change to `flex-base: auto` for `RadioButtonCircle` to work on different box-sizing models

## 1.6.1

- Removed unused dependencies (`css-loader`,`file-loader`,`html-webpack-plugin`,`postcss-loader`,`sass-loader`,`style-loader`)
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "precise-ui",
"version": "1.6.1",
"version": "1.6.2",
"description": "Precise UI React component library powered by Styled Components.",
"keywords": [
"react",
Expand Down
2 changes: 1 addition & 1 deletion src/components/RadioButton/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ const RadioButtonCircle = styled.div(
vertical-align: middle;
position: relative;
overflow: hidden;
flex: 0 0 0.5em;
flex: 0 0 auto;
padding: 0.1875em;
border: 2px solid ${ui5};
border-radius: 100%;
Expand Down

0 comments on commit 99d94d1

Please sign in to comment.