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 5c61dbb commit 4bf230aCopy full SHA for 4bf230a
src/organisms/ModalAlert/ModalAlert.tsx
@@ -22,6 +22,12 @@ export function ModalAlert({
22
}: ModalAlertProps): JSX.Element {
23
const [isDesktop] = useMediaQuery('(min-width: 650px)')
24
25
+ const modalStyles = {
26
+ content: {
27
+ top: '3.75rem',
28
+ },
29
+ }
30
+
31
const showBorder = optionsButton.length > 1
32
return (
33
<Modal
@@ -39,8 +45,9 @@ export function ModalAlert({
39
45
left="0"
40
46
right="0"
41
47
bottom="0"
48
+ zIndex="998"
42
49
/>
43
- <ModalContent>
50
+ <ModalContent zIndex="999" sx={modalStyles.content}>
44
51
<Box
52
alignItems="center"
53
justifyContent="center"
0 commit comments