[common] For Bug 59787

This commit is contained in:
SergeyEzhin 2022-12-22 17:59:07 +04:00
parent a539da3a3d
commit b7c248c4e4
2 changed files with 3 additions and 3 deletions

View file

@ -32,7 +32,7 @@ const PageAbout = props => {
const nameEditor = (_t.textEditor || editors[editorType]).toUpperCase();
return (
<Page className={"about" + (!Device.phone ? " about_tablet" : Device.ios ? " about_phoneIos" : " about_phoneAndroid")}>
<Page className={"about" + (!Device.phone ? " about_tablet" : Device.ios ? " about_ios" : " about_android")}>
<Navbar title={_t.textAbout} backLink={_t.textBack} />
{licInfo && typeof licInfo == 'object' && typeof(customer) == 'object' ? (
<Fragment>

View file

@ -8,12 +8,12 @@
flex-direction: column;
}
&_phoneIos {
&_ios {
padding-top: 120px;
padding-bottom: 30px;
}
&_phoneAndroid {
&_android {
padding-top: 60px;
padding-bottom: 16px;
}