Skip to content

Commit e298147

Browse files
committed
refactor(web): stack tools sections vertically for better alignment
Replace 2-column grid with full-width stacked sections so tool icons flow naturally in one line per group with consistent spacing.
1 parent 7e560e9 commit e298147

1 file changed

Lines changed: 9 additions & 10 deletions

File tree

apps/web/src/features/workplace/WorkplacePage.tsx

Lines changed: 9 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -48,16 +48,15 @@ const WorkplacePage = () => {
4848

4949
<NotebooksSection />
5050

51-
<div className="md:grid md:grid-cols-2 md:gap-lg mb-xl">
52-
<section>
53-
<SectionHeader title="Weitere Tools" />
54-
<ToolsSection />
55-
</section>
56-
<section>
57-
<SectionHeader title="Experimentelle Tools" />
58-
<ExperimentalToolsSection />
59-
</section>
60-
</div>
51+
<section className="mb-xl">
52+
<SectionHeader title="Weitere Tools" />
53+
<ToolsSection />
54+
</section>
55+
56+
<section className="mb-xl">
57+
<SectionHeader title="Experimentelle Tools" />
58+
<ExperimentalToolsSection />
59+
</section>
6160
</PageContainer>
6261
</ErrorBoundary>
6362
);

0 commit comments

Comments
 (0)