enhancement: changed save button placement
This commit is contained in:
28
src/App.tsx
28
src/App.tsx
@@ -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={{
|
||||
|
||||
Reference in New Issue
Block a user