Skip to content

Commit

Permalink
Merge pull request #99 from perimetre/9.3.1
Browse files Browse the repository at this point in the history
9.3.1
  • Loading branch information
adarleyjrr authored Mar 14, 2023
2 parents d954986 + efa376c commit 2f5967e
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 4 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,6 +25,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

### Fixed

## [9.3.1] 2023-03-14

### Changes

- Changed modal `new` variant to use same border radius in all corners

## [9.3.0] 2023-03-13

### Added
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "@perimetre/ui",
"description": "A component library made by @perimetre",
"version": "9.3.0",
"version": "9.3.1",
"repository": {
"type": "git",
"url": "git+https://github.com/perimetre/ui.git"
Expand Down
2 changes: 1 addition & 1 deletion src/components/Modal/index.css
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
@apply relative shadow-xl my-0 mx-auto md:mt-14 bg-white max-w-full min-w-screen-90 md:min-w-initial pui-border-radius pui-animate-fadeUp;
/* Define a border radius that matches with new design */
&.new {
border-radius: 20px 45px 20px 20px;
border-radius: 20px 20px 20px 20px;
}
/* Centers modal container */
&.center {
Expand Down

0 comments on commit 2f5967e

Please sign in to comment.