diff --git a/.changeset/lazy-kiwis-protect.md b/.changeset/lazy-kiwis-protect.md new file mode 100644 index 000000000..068acf491 --- /dev/null +++ b/.changeset/lazy-kiwis-protect.md @@ -0,0 +1,5 @@ +--- +'@strapi/design-system': patch +--- + +change modal content height and max height diff --git a/packages/design-system/src/components/Modal/Modal.tsx b/packages/design-system/src/components/Modal/Modal.tsx index e72861c76..20082c29b 100644 --- a/packages/design-system/src/components/Modal/Modal.tsx +++ b/packages/design-system/src/components/Modal/Modal.tsx @@ -63,8 +63,8 @@ const Overlay = styled(Dialog.Overlay)` const ContentImpl = styled(Dialog.Content)` max-width: 83rem; - max-height: 80vh; - height: min-content; + max-height: 90vh; + height: auto; width: 60%; overflow: hidden; margin: 0 auto;