diff --git a/CHANGELOG.md b/CHANGELOG.md index 478efda98f..8221e4de47 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,6 +17,9 @@ This project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.htm ## [Unreleased] +### Fixes +- Fix for cropped rounded corners in `Menu` component @Bugaa92 ([#360](https://github.com/stardust-ui/react/pull/360)) + ## [v0.9.1](https://github.com/stardust-ui/react/tree/v0.9.1) (2018-10-11) [Compare changes](https://github.com/stardust-ui/react/compare/v0.9.0...v0.9.1) diff --git a/src/themes/teams/components/Menu/menuStyles.ts b/src/themes/teams/components/Menu/menuStyles.ts index 779f8c22a5..f4608ae36a 100644 --- a/src/themes/teams/components/Menu/menuStyles.ts +++ b/src/themes/teams/components/Menu/menuStyles.ts @@ -28,6 +28,7 @@ export default { ...solidBorder(variables.typePrimaryBorderColor), }), borderRadius: pxToRem(4), + overflow: 'hidden', }), ...(underlined && { borderBottom: `2px solid ${variables.typePrimaryUnderlinedBorderColor}`,