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