diff --git a/src/web/components/StandaloneWindow.tsx b/src/web/components/StandaloneWindow.tsx index aa31f1b5a..1fd364905 100644 --- a/src/web/components/StandaloneWindow.tsx +++ b/src/web/components/StandaloneWindow.tsx @@ -48,12 +48,15 @@ const WindowContainer = styled.div` > .window-container-title { display: flex; - justify-content: space-between; padding: 10px 6px; font-size: 18px; border-bottom: ${({ theme }) => theme.border.standard}; cursor: move; + > .window-container-title-text { + flex: 1; + } + > .window-container-title-action { display: flex; @@ -79,7 +82,7 @@ const Window: React.FC = React.memo((props) => { return (
- {props.title} + {props.title}
{/*
@@ -119,7 +122,7 @@ const StandaloneWindow: React.FC & { return (