From 826f53fb459e903f62e026c2f5f336818aaf3f92 Mon Sep 17 00:00:00 2001 From: Jeremy Kahn Date: Thu, 23 Nov 2023 15:23:20 -0600 Subject: [PATCH] feat(ui): show full room name in tooltip --- src/components/Shell/ShellAppBar.tsx | 25 ++++++++++++++++--------- 1 file changed, 16 insertions(+), 9 deletions(-) diff --git a/src/components/Shell/ShellAppBar.tsx b/src/components/Shell/ShellAppBar.tsx index bff71f7..dd002fe 100644 --- a/src/components/Shell/ShellAppBar.tsx +++ b/src/components/Shell/ShellAppBar.tsx @@ -104,7 +104,7 @@ export const ShellAppBar = ({ sx={{ display: 'flex', flexDirection: 'row', - justifyContent: 'space-between', + justifyContent: 'right', }} > {isEmbedded ? null : ( @@ -119,14 +119,21 @@ export const ShellAppBar = ({ )} - - {isEmbedded ? '' : title} - + + {isEmbedded ? null : ( + + + {title} + + + )} {isEmbedded ? null : ( <>