diff --git a/client/my-sites/domains/domain-management/domain-overview-pane/style.scss b/client/my-sites/domains/domain-management/domain-overview-pane/style.scss index 190c56c89dabf2..bdf471d2096171 100644 --- a/client/my-sites/domains/domain-management/domain-overview-pane/style.scss +++ b/client/my-sites/domains/domain-management/domain-overview-pane/style.scss @@ -182,4 +182,4 @@ height: 100%; } } -} \ No newline at end of file +} diff --git a/client/my-sites/email/email-management/email-home.tsx b/client/my-sites/email/email-management/email-home.tsx index 81a51425813b5e..58da9b57f2967e 100644 --- a/client/my-sites/email/email-management/email-home.tsx +++ b/client/my-sites/email/email-management/email-home.tsx @@ -105,7 +105,7 @@ const EmailHome = ( props: EmailManagementHomeProps ) => { return canCurrentUser( state, selectedSite.ID, 'manage_options' ); } ); const hasSitesLoaded = useSelector( hasLoadedSites ); - const isAllDomainManagementContext = context === 'domains'; + const isAllDomainManagementContext = context === 'domains' || context === 'hosting-overview'; const addEmailForwardMutationActive = useAddEmailForwardMutationIsLoading(); diff --git a/client/my-sites/email/email-management/home/email-plan-mailboxes-list.tsx b/client/my-sites/email/email-management/home/email-plan-mailboxes-list.tsx index ee711a0f6f7db0..a21cc71609af95 100644 --- a/client/my-sites/email/email-management/home/email-plan-mailboxes-list.tsx +++ b/client/my-sites/email/email-management/home/email-plan-mailboxes-list.tsx @@ -20,7 +20,7 @@ import type { EmailAccount, Mailbox } from 'calypso/data/emails/types'; import type { ResponseDomain } from 'calypso/lib/domains/types'; type Props = { - context: 'domains' | 'email'; + context: 'domains' | 'email' | 'hosting-overview'; domain: ResponseDomain; account: EmailAccount; mailboxes: Mailbox[]; @@ -156,6 +156,7 @@ function EmailPlanMailboxesList( { // Rendering based on the context switch ( context ) { case 'domains': + case 'hosting-overview': return ( <> { ( isGoogleConfiguring || isAccountWarningPresent ) && ( diff --git a/client/sites/components/dotcom-style.scss b/client/sites/components/dotcom-style.scss index 5fa2c04a4557cf..73fbc952f17d38 100644 --- a/client/sites/components/dotcom-style.scss +++ b/client/sites/components/dotcom-style.scss @@ -269,7 +269,6 @@ padding-right: 0; overflow-y: initial; max-height: initial; - max-width: 1400px; width: 100%; } @@ -313,6 +312,14 @@ } } +.wpcom-site .hosting-dashboard-layout.sites-dashboard:not(.domains-overview) .site-preview-pane { + .hosting-dashboard-item-view__content { + > * { + max-width: 1400px; + } + } +} + // Use flexbox to structure of fly-out panel. .wpcom-site .main.hosting-dashboard-layout.sites-dashboard.sites-dashboard__layout:not(.preview-hidden) { &.hosting-dashboard-layout,