|
|
@ -61,6 +61,7 @@ const StyledBannerInner = styled.div`
|
|
|
|
|
|
|
|
|
|
|
|
.session-button {
|
|
|
|
.session-button {
|
|
|
|
margin-top: var(--margins-md);
|
|
|
|
margin-top: var(--margins-md);
|
|
|
|
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|
|
|
|
`;
|
|
|
|
|
|
|
|
|
|
|
@ -75,11 +76,13 @@ const BannerInner = () => {
|
|
|
|
return (
|
|
|
|
return (
|
|
|
|
<StyledBannerInner>
|
|
|
|
<StyledBannerInner>
|
|
|
|
<p>{window.i18n('recoveryPhraseRevealMessage')}</p>
|
|
|
|
<p>{window.i18n('recoveryPhraseRevealMessage')}</p>
|
|
|
|
|
|
|
|
<Flex container={true} alignItems="center" justifyContent="center">
|
|
|
|
<SessionButton
|
|
|
|
<SessionButton
|
|
|
|
text={window.i18n('recoveryPhraseRevealButtonText')}
|
|
|
|
text={window.i18n('recoveryPhraseRevealButtonText')}
|
|
|
|
onClick={showRecoveryPhraseModal}
|
|
|
|
onClick={showRecoveryPhraseModal}
|
|
|
|
dataTestId="reveal-recovery-phrase"
|
|
|
|
dataTestId="reveal-recovery-phrase"
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
|
|
|
|
</Flex>
|
|
|
|
</StyledBannerInner>
|
|
|
|
</StyledBannerInner>
|
|
|
|
);
|
|
|
|
);
|
|
|
|
};
|
|
|
|
};
|
|
|
|