diff --git a/lib/components/ViewPublicationPage/StartPageViewPublication/index.tsx b/lib/components/ViewPublicationPage/StartPageViewPublication/index.tsx index cb686e0..0d5c966 100644 --- a/lib/components/ViewPublicationPage/StartPageViewPublication/index.tsx +++ b/lib/components/ViewPublicationPage/StartPageViewPublication/index.tsx @@ -264,6 +264,7 @@ export const StartPageViewPublication = () => { ? "start" : "center", flexGrow: settings.cfg.startpageType === "centered" ? 0 : 1, + wordBreak: "break-word", alignItems: settings.cfg.startpageType === "centered" ? "center" @@ -411,6 +412,7 @@ export const StartPageViewPublication = () => { onClick={onSiteClick} sx={{ display: "block", + width: "100%", marginTop: "10px", marginLeft: settings.cfg.startpageType === "expanded" && @@ -428,8 +430,11 @@ export const StartPageViewPublication = () => { settings.cfg.startpageType === "expanded" && settings.cfg.startpage.position === "center" && !isMobile - ? "end" - : "none", + ? "end" : settings.cfg.startpageType === "expanded" && + settings.cfg.startpage.position === "center" && + isMobile || settings.cfg.startpageType === "centered" && + isMobile ? "center" + : "start", color: theme.palette.primary.main, overflow: "hidden", textOverflow: "ellipsis",