fix(common): increase modal dialog width for more screen sizes (#5884)
Co-authored-by: nivedin <nivedinp@gmail.com> Co-authored-by: James George <25279263+jamesgeorge007@users.noreply.github.com>
This commit is contained in:
parent
77e420dc6a
commit
5ae9639901
4 changed files with 4 additions and 4 deletions
|
|
@ -4,7 +4,7 @@
|
|||
dialog
|
||||
:title="t('collection.properties')"
|
||||
:full-width-body="true"
|
||||
styles="sm:max-w-5xl"
|
||||
styles="sm:max-w-5xl lg:max-w-6xl xl:max-w-7xl 2xl:max-w-[80vw]"
|
||||
@close="hideModal"
|
||||
>
|
||||
<template #body>
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@
|
|||
dialog
|
||||
:title="t('documentation.title')"
|
||||
:full-width-body="true"
|
||||
styles="sm:max-w-6xl"
|
||||
styles="sm:max-w-6xl xl:max-w-7xl 2xl:max-w-[80vw]"
|
||||
@close="hideModal"
|
||||
>
|
||||
<template #body>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
v-if="show"
|
||||
dialog
|
||||
:title="t(`environment.${action}`)"
|
||||
styles="sm:max-w-5xl"
|
||||
styles="sm:max-w-5xl lg:max-w-6xl xl:max-w-7xl 2xl:max-w-[80vw]"
|
||||
@close="hideModal"
|
||||
>
|
||||
<template #body>
|
||||
|
|
|
|||
|
|
@ -3,7 +3,7 @@
|
|||
v-if="show"
|
||||
dialog
|
||||
:title="t(`environment.${action}`)"
|
||||
styles="sm:max-w-5xl"
|
||||
styles="sm:max-w-5xl lg:max-w-6xl xl:max-w-7xl 2xl:max-w-[80vw]"
|
||||
@close="hideModal"
|
||||
>
|
||||
<template #body>
|
||||
|
|
|
|||
Loading…
Reference in a new issue