diff --git a/src-web/components/SettingsDropdown.tsx b/src-web/components/SettingsDropdown.tsx index e60e280a..9e78cd73 100644 --- a/src-web/components/SettingsDropdown.tsx +++ b/src-web/components/SettingsDropdown.tsx @@ -109,7 +109,7 @@ export function SettingsDropdown() { }, ]} > - + ); } diff --git a/src-web/components/Workspace.tsx b/src-web/components/Workspace.tsx index 110d72f2..a4049e80 100644 --- a/src-web/components/Workspace.tsx +++ b/src-web/components/Workspace.tsx @@ -177,8 +177,8 @@ function HeaderSize({ className, ...props }: HeaderSizeProps) {
diff --git a/src-web/components/WorkspaceHeader.tsx b/src-web/components/WorkspaceHeader.tsx index a4065c1d..49a80abc 100644 --- a/src-web/components/WorkspaceHeader.tsx +++ b/src-web/components/WorkspaceHeader.tsx @@ -1,5 +1,5 @@ import classNames from 'classnames'; -import React, { memo } from 'react'; +import React, { memo, useState } from 'react'; import { Icon } from './core/Icon'; import { HStack } from './core/Stacks'; import { EnvironmentActionsDropdown } from './EnvironmentActionsDropdown'; @@ -17,6 +17,7 @@ interface Props { export const WorkspaceHeader = memo(function WorkspaceHeader({ className }: Props) { const osInfo = useOsInfo(); + const [maximized, setMaximized] = useState(false); return (
{osInfo?.osType !== 'Darwin' && ( - - - - )} diff --git a/src-web/components/core/Icon.tsx b/src-web/components/core/Icon.tsx index b97b31f8..9db54b02 100644 --- a/src-web/components/core/Icon.tsx +++ b/src-web/components/core/Icon.tsx @@ -6,6 +6,9 @@ import { ReactComponent as LeftPanelHiddenIcon } from '../../assets/icons/LeftPa import { ReactComponent as LeftPanelVisibleIcon } from '../../assets/icons/LeftPanelVisibleIcon.svg'; const icons = { + square: I.SquareIcon, + minus: I.MinusIcon, + hamburger: I.HamburgerMenuIcon, archive: I.ArchiveIcon, chat: I.ChatBubbleIcon, check: I.CheckIcon, diff --git a/src-web/main.css b/src-web/main.css index 7f8ed1f9..c52ca2b4 100644 --- a/src-web/main.css +++ b/src-web/main.css @@ -10,7 +10,7 @@ } #root { - @apply bg-gray-50 text-gray-900 overflow-hidden rounded-lg; + @apply bg-gray-50 text-gray-900 overflow-hidden; } /* Setup default transitions for elements */