Skip to content

Commit 0fd051a

Browse files
Remove Playground branding from site list (#1700)
## Motivation for the change, related issues We are removing because branding is not finalized yet. Mentioned by @sfougnier [here](#1655 (comment)). ## Implementation details This PR hides the logo and background graphic from the site manager sidebar. ## Testing Instructions (or ideally a Blueprint) Run `npm run dev`, open the site listing, and observe the UI remains visible and functional.
1 parent a93bbef commit 0fd051a

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

packages/playground/website/src/components/site-manager/site-manager-sidebar/index.tsx

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import {
1111
__experimentalItemGroup as ItemGroup,
1212
__experimentalItem as Item,
1313
} from '@wordpress/components';
14-
import { Logo, TemporaryStorageIcon, WordPressIcon } from '../icons';
14+
import { TemporaryStorageIcon, WordPressIcon } from '../icons';
1515
import store, {
1616
PlaygroundReduxState,
1717
addSite as addSiteToStore,
@@ -71,7 +71,8 @@ export function SiteManagerSidebar({
7171
className={classNames(css.siteManagerSidebar, className)}
7272
>
7373
<header className={css.siteManagerSidebarHeader}>
74-
<Logo className={css.siteManagerSidebarLogoButton} />
74+
{/* Remove Playground logo because branding isn't finalized. */}
75+
{/* <Logo className={css.siteManagerSidebarLogoButton} /> */}
7576
</header>
7677
<nav
7778
className={classNames(

packages/playground/website/src/components/site-manager/style.module.css

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ body {
1010
overflow: hidden;
1111
padding: var(--site-manager-border-width);
1212
background-color: var(--site-manager-background-color);
13-
background-image: url(../../../public/site-manager-background.svg);
13+
/* Remove Playground background graphic because branding isn't finalized. */
14+
/* background-image: url(../../../public/site-manager-background.svg); */
1415
background-position: bottom left;
1516
background-repeat: no-repeat;
1617
width: 100%;

0 commit comments

Comments
 (0)