File tree 4 files changed +11
-8
lines changed
packages/playground/website/src/components
4 files changed +11
-8
lines changed Original file line number Diff line number Diff line change @@ -32,13 +32,14 @@ export default function BrowserChrome({
32
32
const addressBarClass = classNames ( css . addressBarSlot , {
33
33
[ css . isHidden ] : ! showAddressBar ,
34
34
} ) ;
35
- const wrapperClass = classNames ( css . wrapper , css . hasFullSizeWindow , className ) ;
35
+ const wrapperClass = classNames (
36
+ css . wrapper ,
37
+ css . hasFullSizeWindow ,
38
+ className
39
+ ) ;
36
40
37
41
return (
38
- < div
39
- className = { wrapperClass }
40
- data-cy = "simulated-browser"
41
- >
42
+ < div className = { wrapperClass } data-cy = "simulated-browser" >
42
43
< div className = { `${ css . window } browser-chrome-window` } >
43
44
< header
44
45
className = { `
Original file line number Diff line number Diff line change @@ -142,7 +142,7 @@ export function BlueprintsPanel({
142
142
style = { { paddingBottom : 10 } }
143
143
>
144
144
{ mobileUi && (
145
- < FlexItem >
145
+ < FlexItem style = { { marginLeft : - 17 } } >
146
146
< Button
147
147
variant = "link"
148
148
label = "Back to sites list"
Original file line number Diff line number Diff line change @@ -68,7 +68,9 @@ export const SiteManager = forwardRef<
68
68
if ( fullScreenSections ) {
69
69
return (
70
70
< div className = { classNames ( css . siteManager , className ) } ref = { ref } >
71
- { activeSiteManagerSection === 'sidebar' ? sidebar : activePanel }
71
+ { activeSiteManagerSection === 'sidebar' || ! activePanel
72
+ ? sidebar
73
+ : activePanel }
72
74
</ div >
73
75
) ;
74
76
}
Original file line number Diff line number Diff line change @@ -105,7 +105,7 @@ export function SiteInfoPanel({
105
105
style = { { paddingBottom : 10 } }
106
106
>
107
107
{ mobileUi && (
108
- < FlexItem >
108
+ < FlexItem style = { { marginLeft : - 20 } } >
109
109
< Button
110
110
variant = "link"
111
111
label = "Back to sites list"
You can’t perform that action at this time.
0 commit comments