Fix/email changed text (#728)

* fix: correct styling for "Email successfully changed" dialog texts

* fix: correct top styling for title
This commit is contained in:
Vardan Hakobyan
2021-11-10 20:06:31 +04:00
committed by GitHub
parent ba4fbd1c0a
commit e833dbfbca

View File

@@ -2,11 +2,11 @@ import { FunctionalComponent } from 'preact';
export const ChangeEmailSuccess: FunctionalComponent = () => {
return (
<>
<div className={'sk-label sk-bold info'}>Your email has been successfully changed.</div>
<div>
<div className={'sk-label sk-bold info mt-2'}>Your email has been successfully changed.</div>
<p className={'sk-p'}>
Please ensure you are running the latest version of Standard Notes on all platforms to ensure maximum compatibility.
</p>
</>
</div>
);
};