Skip to content

Commit 3712bde

Browse files
committed
fix: popup layer close button z-index issue
1 parent 116086b commit 3712bde

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/components/Quiz/QuizzesModal.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ const QuizzesModal = ({
4040
<ModalOverlay bg="blackAlpha.700" />
4141

4242
<Center as={ModalContent} m={0} bg={getStatusColor()} py="16">
43-
<ModalCloseButton size="lg" p="6" />
43+
<ModalCloseButton size="lg" p="6" sx={{ zIndex: '999'}}/>
4444
{children}
4545
</Center>
4646
</ChakraModal>

src/pages/run-a-node.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -862,7 +862,7 @@ const RunANodePage = () => {
862862
</Column>
863863
</StakingCalloutContainer>
864864
<Content>
865-
<H3 id="plan-on-staking" sx={{ display: 'flex', alignItems: 'center' }}>
865+
<H3 id="plan-on-staking">
866866
<Emoji text=":cut_of_meat:" fontSize="2em" me="4" />
867867
{t("page-run-a-node-staking-plans-title")}
868868
</H3>
@@ -875,7 +875,7 @@ const RunANodePage = () => {
875875
{t("page-run-a-node-staking-plans-ethstaker-link-label")}
876876
</InlineLink>
877877
</Text>
878-
<H3 id="rasp-pi" sx={{ display: 'flex', alignItems: 'center' }}>
878+
<H3 id="rasp-pi">
879879
<Emoji text=":pie:" fontSize="2em" me="4" />
880880
{t("page-run-a-node-rasp-pi-title")}
881881
</H3>

0 commit comments

Comments
 (0)