Add more control

This commit is contained in:
2026-06-29 09:41:02 +02:00
parent 2e62d2d810
commit 8207e84fa2
11 changed files with 890 additions and 56 deletions
+3 -3
View File
@@ -13,7 +13,7 @@ import { ImportExportButtons } from "./components/download-buttons";
const Bar = styled.div`
width: 100%;
overflow: auto;
height: 110px;
height: 125px;
background-color: var(--primary-color);
display: flex;
flex-direction: row;
@@ -24,7 +24,7 @@ const ImageBox = styled.table`
padding-right: 4px;
`;
const SvgOption = styled.table`
const SvgOption = styled.div`
margin: 2px;
padding-right: 4px;
`;
@@ -92,7 +92,7 @@ export function NavBar({ handler }: CanvasHandlerProps) {
</tbody>
</ImageBox>
<SvgOption style={style}>
<SvgTracerOptions selected={selected} />
<SvgTracerOptions selected={selected} handler={handler} />
</SvgOption>
<Line />
<ImportExportButtons handler={handler} selected={selected} />