diff --git a/packages/desktop/src/components/ConversationList.tsx b/packages/desktop/src/components/ConversationList.tsx index cdabbff..350e680 100644 --- a/packages/desktop/src/components/ConversationList.tsx +++ b/packages/desktop/src/components/ConversationList.tsx @@ -52,9 +52,6 @@ export function ConversationList({ lookingForSomeone = false }: { lookingForSome return ( <> diff --git a/packages/desktop/src/components/Navbar.tsx b/packages/desktop/src/components/Navbar.tsx index 26e2b02..404aeae 100644 --- a/packages/desktop/src/components/Navbar.tsx +++ b/packages/desktop/src/components/Navbar.tsx @@ -51,7 +51,7 @@ const Navbar = ({ sx={{ WebkitAppRegion: 'drag', cursor: 'pointer', - pb: 1, + p: 2, }} > diff --git a/packages/desktop/src/components/Terminal.tsx b/packages/desktop/src/components/Terminal.tsx index 0a2693b..a6aeaf9 100644 --- a/packages/desktop/src/components/Terminal.tsx +++ b/packages/desktop/src/components/Terminal.tsx @@ -512,21 +512,18 @@ export function TerminalProvider({ children }: { children?: React.ReactNode }) { backgroundColor: blueGrey[50], boxShadow: 3, borderRight: `1px solid ${blueGrey}`, + + display: 'flex', + flexDirection: 'column', }} > - - + + {searchVal ? ( ) : ( @@ -534,110 +531,110 @@ export function TerminalProvider({ children }: { children?: React.ReactNode }) { lookingForSomeone={selectedConversationId && !selectedConversation} /> )} + - {/* footer controls */} - + - + + + + - - + + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - Logout - - - - + '&:before': { + content: '""', + display: 'block', + position: 'absolute', + top: 0, + right: 14, + width: 10, + height: 10, + bgcolor: 'background.paper', + transform: 'translateY(-50%) rotate(45deg)', + zIndex: 0, + }, + }, + }} + transformOrigin={{ horizontal: 'right', vertical: 'top' }} + anchorOrigin={{ horizontal: 'right', vertical: 'bottom' }} + > + + + + + Logout + + +