Commit 26e31a09 authored by Patrik Kotúček's avatar Patrik Kotúček Committed by Marek Veselý
Browse files

258 - Move toolbar to the left of interface

parent 8c68d656
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -88,7 +88,7 @@ export const Toolbar: FC<ToolbarProps> = ({

  return (
    <Sidebar
      position='right'
      position='left'
      sections={sections}
      className={sidebar}
      title={t('tools.availableTools')}
+2 −1
Original line number Diff line number Diff line
@@ -162,6 +162,8 @@ export const TraineeView: FC<TraineeViewProps> = ({
          showLogo
        />

        <div id='toolPanel' />

        <div className={contentClass} ref={contentRef}>
          {/* TODO: improve layout of StopAnnounce */}
          <div style={{ position: 'sticky', top: '0', zIndex: '10' }}>
@@ -170,7 +172,6 @@ export const TraineeView: FC<TraineeViewProps> = ({
          <Suspense fallback={<CenteredSpinner />}>{children}</Suspense>
        </div>

        <div id='toolPanel' />
        <div id='rightPanel' />
      </div>
    </>