fixed logoSize and gap for start page design

This commit is contained in:
aleksandr-raw 2024-05-02 17:39:38 +04:00
parent c6a73bf749
commit 5ca3cff1c7

@ -94,7 +94,7 @@ export const StartPageViewPublication = () => {
display: "flex",
alignItems: "center",
flexWrap: settings.cfg.startpageType === "expanded" && settings.cfg.startpage.position === "center"? "nowrap" : "wrap",
gap:"30px",
gap: isMobile? "20px" : "30px",
mb: settings.cfg.startpageType === "centered" ? "25px" : "7px",
}}
>
@ -102,7 +102,7 @@ export const StartPageViewPublication = () => {
<img
src={settings.cfg.startpage.logo}
style={{
height: "40px",
maxHeight: isMobile? "30px" : "40px",
maxWidth: "110px",
objectFit: "cover",
}}