From 8840c2d072a5e9d1db4c2b5e5edfb7e50637bb40 Mon Sep 17 00:00:00 2001 From: jcs021102 Date: Sat, 24 May 2025 05:26:47 +0200 Subject: [PATCH] improved the panelToolbar layout by seperating save from navigation controls, also added key moments navigation control (NON-FUNCTIONAL) --- src/sections/analysis/panelToolbar/index.tsx | 35 +++++++++++++++++--- 1 file changed, 30 insertions(+), 5 deletions(-) diff --git a/src/sections/analysis/panelToolbar/index.tsx b/src/sections/analysis/panelToolbar/index.tsx index a94854cb..1d1853b1 100644 --- a/src/sections/analysis/panelToolbar/index.tsx +++ b/src/sections/analysis/panelToolbar/index.tsx @@ -35,7 +35,8 @@ export default function PanelToolBar() { }, [undoBoardMove, boardHistory, resetBoard, board]); return ( - + + @@ -61,11 +62,34 @@ export default function PanelToolBar() { + + + + + + {}} + sx={{ paddingX: 1.2, paddingY: 0.5 }} + > + + + + - - + + + {}} + sx={{ paddingX: 1.2, paddingY: 0.5 }} + > + + + + + - + + + ); -} +} \ No newline at end of file