перенос заголовков при переполнении
This commit is contained in:
parent
67c61eea79
commit
f7dcf5d16f
@ -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",
|
||||
|
Loading…
Reference in New Issue
Block a user