File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
packages/react-renderer-demo/src/components/common Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,8 @@ import MenuContext from '../navigation/menu-context';
12
12
13
13
const useStyles = makeStyles ( ( ) => ( {
14
14
linksContainer : {
15
- paddingRight : 32 ,
15
+ paddingLeft : 32 ,
16
+ paddingRight : 64 ,
16
17
marginTop : 16 ,
17
18
marginBottom : 16 ,
18
19
} ,
@@ -30,7 +31,7 @@ const ConnectedLinks = () => {
30
31
const classNames = useStyles ( ) ;
31
32
return (
32
33
< Grid container justify = "space-between" className = { clsx ( classNames . linksContainer , {
33
- [ classNames . withSideNav ] : pathname . includes ( '/renderer/' ) ,
34
+ [ classNames . withSideNav ] : pathname . includes ( '/renderer/' ) && ! ( pathname === '/renderer/installation' || pathname === '/renderer/get-started' ) ,
34
35
} ) } >
35
36
< Grid item >
36
37
{ prev && prev . link && (
You can’t perform that action at this time.
0 commit comments