Skip to content

Commit 18dd6b8

Browse files
committed
outuput expnded modal correct width
1 parent bfbea5b commit 18dd6b8

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/components/molecules/modals/OutputNodeExpandedModal.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ const OuputNodeExpandedModal = ({ closeFn = () => null, open = false, data }) =>
3131
<div className='fixed inset-0 bg-black/25' />
3232
</Transition.Child>
3333

34-
<div className='fixed inset-0 overflow-y-auto'>
34+
<div className='fixed inset-0 max-h-[600px] max-w-[600px] overflow-y-auto'>
3535
<div className='flex items-center justify-center min-h-full p-4 text-center'>
3636
<Transition.Child
3737
as={Fragment}
@@ -51,7 +51,7 @@ const OuputNodeExpandedModal = ({ closeFn = () => null, open = false, data }) =>
5151
name='output-text'
5252
value={JSON.stringify(data, null, 2)}
5353
readOnly={true}
54-
classes={'w-[600px] h-[80px'}
54+
classes={'w-[600px] h-[600px]'}
5555
/>
5656
</div>
5757
</Dialog.Panel>

0 commit comments

Comments
 (0)