feat: Remove Header

Remove header and incorporate everything else into the side bar and other areas
This commit is contained in:
blessedcoolant
2024-01-04 00:17:57 +05:30
committed by Kent Keirsey
parent 4ce39a5974
commit 2250bca8d9
9 changed files with 165 additions and 175 deletions

View File

@@ -3,6 +3,7 @@ import { InvButtonGroup } from 'common/components/InvButtonGroup/InvButtonGroup'
import ClearQueueButton from 'features/queue/components/ClearQueueButton';
import QueueFrontButton from 'features/queue/components/QueueFrontButton';
import ProgressBar from 'features/system/components/ProgressBar';
import StatusIndicator from 'features/system/components/StatusIndicator';
import { useFeatureStatus } from 'features/system/hooks/useFeatureStatus';
import { memo } from 'react';
@@ -29,8 +30,9 @@ const QueueControls = () => {
{isPauseEnabled && <PauseProcessorButton asIconButton />} */}
<ClearQueueButton asIconButton />
</InvButtonGroup>
<Flex h={2} w="full">
<ProgressBar />
<Flex h={5} w="full" alignItems="center">
<StatusIndicator />
<ProgressBar height={2} />
</Flex>
</Flex>
);