style: align inbox header elements by moving dropdown button to the far right

This commit is contained in:
2026-05-09 14:23:58 +02:00
parent 5c8a71bdda
commit c283703640
@@ -1107,7 +1107,7 @@ export default function InboxDetailPage() {
return ( return (
<div style={{ display: 'flex', flexDirection: 'column', height: 'calc(100vh - 120px)' }}> <div style={{ display: 'flex', flexDirection: 'column', height: 'calc(100vh - 120px)' }}>
<div style={{ display: 'flex', alignItems: 'center', justifyContent: 'space-between', marginBottom: 12, gap: 12 }}> <div style={{ display: 'flex', alignItems: 'center', marginBottom: 12, gap: 12 }}>
<Space> <Space>
<Button icon={<ArrowLeftOutlined />} onClick={() => navigate('/inbox')}> <Button icon={<ArrowLeftOutlined />} onClick={() => navigate('/inbox')}>
Zurück Zurück
@@ -1118,6 +1118,7 @@ export default function InboxDetailPage() {
<SourceTag source={file.source} /> <SourceTag source={file.source} />
</Space> </Space>
<Dropdown.Button <Dropdown.Button
style={{ marginLeft: 'auto' }}
type="primary" type="primary"
icon={<DownOutlined />} icon={<DownOutlined />}
disabled={documents.length === 0} disabled={documents.length === 0}