We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2f8a95 commit d672691Copy full SHA for d672691
src/ui/Modal/Modal.tsx
@@ -4,8 +4,8 @@ import ReactModal from 'react-modal'
4
import BaseModal from './BaseModal'
5
6
const modalSizes = Object.freeze({
7
- medium: 'w-11/12 md:w-3/4 xl:w-1/2',
8
- small: 'w-3/4 md:w-2/4 xl:w-2/4 2xl:w-1/4',
+ medium: 'w-11/12 md:w-3/4 xl:w-1/2 4xl:w-[1000px]',
+ small: 'w-3/4 md:w-2/4 xl:w-2/4 2xl:w-1/4 3xl:w-[448px]',
9
})
10
11
export interface ModalProps {
tailwind.config.mjs
@@ -178,6 +178,8 @@ const config = {
178
},
179
180
screens: {
181
+ '3xl': '1792px',
182
+ '4xl': '2048px',
183
print: { raw: 'print' },
184
185
backgroundImage: {
0 commit comments