diff --git a/src/components/NavbarComponent.tsx b/src/components/NavbarComponent.tsx index e86580f6..475a8206 100644 --- a/src/components/NavbarComponent.tsx +++ b/src/components/NavbarComponent.tsx @@ -4,7 +4,6 @@ import { IconButton, ButtonGroup, Spacer, - SimpleGrid, } from '@chakra-ui/react'; import React from 'react'; import { appWindow } from '@tauri-apps/api/window'; @@ -27,52 +26,58 @@ const NavbarComponent: React.FC = () => ( bg="#edf3f8" _dark={{ bg: '#1A202C' }} > -
- - - - - +
+ + + + - - - - - - { - appWindow.minimize(); - }} - size="sm" - icon={} - /> - { - appWindow.toggleMaximize(); - }} - size="sm" - icon={} - /> - { - invoke('hide_window'); - }} - size="sm" - icon={} - /> - - - - + + + + + + { + appWindow.minimize(); + }} + size="sm" + icon={} + /> + { + appWindow.toggleMaximize(); + }} + size="sm" + icon={} + /> + { + invoke('hide_window'); + }} + size="sm" + icon={} + /> + + + ); export default NavbarComponent; diff --git a/src/components/StepButtons.tsx b/src/components/StepButtons.tsx index d2bc07aa..84ddcdc3 100644 --- a/src/components/StepButtons.tsx +++ b/src/components/StepButtons.tsx @@ -13,7 +13,7 @@ const StepButtons = (): JSX.Element => { const prevDisabled = activeStep === 0; const isLast = activeStep === count; return ( - +