feat(instant): give a stable class name to the close button on the overlay
This commit is contained in:
parent
14ad091e83
commit
8b659dbd77
@ -1,7 +1,7 @@
|
||||
import * as React from 'react';
|
||||
|
||||
import { ZeroExInstantContainer } from '../components/zero_ex_instant_container';
|
||||
import { MAIN_CONTAINER_DIV_CLASS, OVERLAY_DIV_CLASS } from '../constants';
|
||||
import { MAIN_CONTAINER_DIV_CLASS, OVERLAY_CLOSE_BUTTON_DIV_CLASS, OVERLAY_DIV_CLASS } from '../constants';
|
||||
import { ColorOption } from '../style/theme';
|
||||
|
||||
import { Container } from './ui/container';
|
||||
@ -22,6 +22,7 @@ export const ZeroExInstantOverlay: React.StatelessComponent<ZeroExInstantOverlay
|
||||
<Overlay zIndex={zIndex} className={OVERLAY_DIV_CLASS}>
|
||||
<Flex height="100vh">
|
||||
<Container position="absolute" top="0px" right="0px" display={{ default: 'initial', sm: 'none' }}>
|
||||
<Container className={OVERLAY_CLOSE_BUTTON_DIV_CLASS}>
|
||||
<Icon
|
||||
height={18}
|
||||
width={18}
|
||||
@ -31,6 +32,7 @@ export const ZeroExInstantOverlay: React.StatelessComponent<ZeroExInstantOverlay
|
||||
padding="2em 2em"
|
||||
/>
|
||||
</Container>
|
||||
</Container>
|
||||
<Container
|
||||
width={{ default: 'auto', sm: '100%' }}
|
||||
height={{ default: 'auto', sm: '100%' }}
|
||||
|
@ -8,6 +8,7 @@ export const DEFAULT_ZERO_EX_CONTAINER_SELECTOR = '#zeroExInstantContainer';
|
||||
export const INJECTED_DIV_CLASS = 'zeroExInstantResetRoot';
|
||||
export const INJECTED_DIV_ID = 'zeroExInstant';
|
||||
export const OVERLAY_DIV_CLASS = 'zeroExInstantOverlay';
|
||||
export const OVERLAY_CLOSE_BUTTON_DIV_CLASS = 'zeroExInstantOverlayCloseButton';
|
||||
export const MAIN_CONTAINER_DIV_CLASS = 'zeroExInstantMainContainer';
|
||||
export const WEB_3_WRAPPER_TRANSACTION_FAILED_ERROR_MSG_PREFIX = 'Transaction failed';
|
||||
export const GWEI_IN_WEI = new BigNumber(1000000000);
|
||||
|
Loading…
x
Reference in New Issue
Block a user