enhancement: changed save button placement

This commit is contained in:
2026-03-06 13:27:52 +01:00
parent 1a479e931f
commit dcdd4d621e

View File

@@ -55,7 +55,7 @@ const App: React.FC = () => {
/>
</Sider>
<Layout>
<Header style={{ padding: 0, background: colorBgContainer }}>
<Header style={{ padding: 0, background: colorBgContainer, display: 'flex', alignItems: 'center', justifyContent: 'space-between' }}>
<Space>
<div style={{ background: '#001529' }}>
<Button
@@ -69,21 +69,23 @@ const App: React.FC = () => {
color: colorBgContainer,
}}
/>
<Button
type="text"
icon={<SaveOutlined />}
onClick={saveConceptSketch}
title="Save as JSON"
style={{
fontSize: '16px',
width: 32,
height: 32,
color: colorBgContainer,
}}
/>
</div>
<Breadcrumb items={graphLevel} />
</Space>
<div style={{ background: '#001529' }}>
<Button
type="text"
icon={<SaveOutlined />}
onClick={saveConceptSketch}
title="Save as JSON"
style={{
fontSize: '16px',
width: 32,
height: 32,
color: colorBgContainer,
}}
/>
</div>
</Header>
<Content
style={{