Skip to content

Commit 0e69d99

Browse files
committed
Fixed connected link width.
1 parent 00b4dac commit 0e69d99

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

packages/react-renderer-demo/src/components/common/connected-links.js

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,8 @@ import MenuContext from '../navigation/menu-context';
1212

1313
const useStyles = makeStyles(() => ({
1414
linksContainer: {
15-
paddingRight: 32,
15+
paddingLeft: 32,
16+
paddingRight: 64,
1617
marginTop: 16,
1718
marginBottom: 16,
1819
},
@@ -30,7 +31,7 @@ const ConnectedLinks = () => {
3031
const classNames = useStyles();
3132
return (
3233
<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'),
3435
}) }>
3536
<Grid item>
3637
{ prev && prev.link && (

0 commit comments

Comments
 (0)