diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c27811..d72c655 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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 diff --git a/package-lock.json b/package-lock.json index 496c3a5..37bca2f 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "@perimetre/ui", - "version": "9.3.0", + "version": "9.3.1", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "@perimetre/ui", - "version": "9.3.0", + "version": "9.3.1", "license": "MIT", "dependencies": { "@babel/core": "^7.12.13", diff --git a/package.json b/package.json index 3a0c4d8..575503d 100644 --- a/package.json +++ b/package.json @@ -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" diff --git a/src/components/Modal/index.css b/src/components/Modal/index.css index 8c67a56..afe9621 100644 --- a/src/components/Modal/index.css +++ b/src/components/Modal/index.css @@ -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 {