refactor: styles refactored

This commit is contained in:
2025-09-05 15:55:20 +04:00
parent 0236379898
commit 67780b5251
6 changed files with 8 additions and 12 deletions

View File

@ -4,7 +4,7 @@ import Funnel from "@/app/deals/components/shared/Funnel/Funnel";
import PageBlock from "@/components/layout/PageBlock/PageBlock";
export const BoardView = () => (
<PageBlock>
<PageBlock style={{ height: "100%" }}>
<MainBlockHeader />
<Space h="md" />
<Funnel />

View File

@ -2,7 +2,7 @@ import DealsTable from "@/app/deals/components/desktop/DealsTable/DealsTable";
import PageBlock from "@/components/layout/PageBlock/PageBlock";
export const TableView = () => (
<PageBlock>
<PageBlock style={{ height: "100%" }}>
<DealsTable />
</PageBlock>
);