feat: improve home screen app bar layout

This commit is contained in:
Jeremy Kahn 2022-09-05 17:56:15 -05:00
parent 04549a8507
commit 040e199231

View File

@ -239,7 +239,7 @@ export const Shell = ({ children, userPeerId }: ShellProps) => {
edge="start" edge="start"
color="inherit" color="inherit"
aria-label="Copy current URL" aria-label="Copy current URL"
sx={{ mr: 1, ml: 'auto' }} sx={{ ml: 'auto' }}
onClick={handleLinkButtonClick} onClick={handleLinkButtonClick}
> >
<LinkIcon /> <LinkIcon />
@ -247,7 +247,7 @@ export const Shell = ({ children, userPeerId }: ShellProps) => {
</Tooltip> </Tooltip>
{doShowPeers ? ( {doShowPeers ? (
<Tooltip title="Number of peers in the room"> <Tooltip title="Number of peers in the room">
<StepIcon icon={numberOfPeers} /> <StepIcon icon={numberOfPeers} sx={{ ml: 2 }} />
</Tooltip> </Tooltip>
) : null} ) : null}
</Toolbar> </Toolbar>