working with styling

pull/1665/head
Warrick Corfe-Tan 4 years ago
parent 1925f7725f
commit 234ec42162

@ -46,22 +46,24 @@ const SessionConfirmInner = (props: Props) => {
const messageSubText = messageSub ? 'session-confirm-main-message' : 'subtle'; const messageSubText = messageSub ? 'session-confirm-main-message' : 'subtle';
// <SessionModal
// title={title}
// onClose={onClickClose}
// showExitIcon={false}
// showHeader={showHeader}
// theme={theme}
// >
return ( return (
<SessionModal
title={title}
onClose={onClickClose}
showExitIcon={false}
showHeader={showHeader}
theme={theme}
>
{/* <SessionWrapperModal <SessionWrapperModal
title={title} title={title}
onClose={onClickClose} onClose={onClickClose}
showExitIcon={false} showExitIcon={false}
showHeader={showHeader} showHeader={showHeader}
theme={theme} theme={theme}
></SessionWrapperModal> */} >
{!showHeader && <div className="spacer-lg" />} {!showHeader && <div className="spacer-lg" />}
@ -88,7 +90,8 @@ const SessionConfirmInner = (props: Props) => {
<SessionButton text={cancelText} buttonColor={closeTheme} onClick={onClickClose} /> <SessionButton text={cancelText} buttonColor={closeTheme} onClick={onClickClose} />
)} )}
</div> </div>
</SessionModal> {/* </SessionModal> */}
</SessionWrapperModal>
); );
}; };

Loading…
Cancel
Save