Skip to content

Commit 5ca1a30

Browse files
committed
refactor(web): remove-divider-below-stats-and-filter
1 parent 952f4e8 commit 5ca1a30

File tree

2 files changed

+1
-8
lines changed

2 files changed

+1
-8
lines changed

web/src/components/CasesDisplay/StatsAndFilters.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ const Container = styled.div`
99
flex-wrap: wrap;
1010
gap: 8px;
1111
margin-top: 11px;
12+
margin-bottom: 48px;
1213
justify-content: space-between;
1314
`;
1415

web/src/components/CasesDisplay/index.tsx

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,6 @@ import CasesGrid, { ICasesGrid } from "./CasesGrid";
1313
import Search from "./Search";
1414
import StatsAndFilters from "./StatsAndFilters";
1515

16-
const Divider = styled.hr`
17-
display: flex;
18-
border: none;
19-
height: 1px;
20-
background-color: ${({ theme }) => theme.stroke};
21-
margin: ${responsiveSize(20, 24)};
22-
`;
2316
const TitleContainer = styled.div`
2417
display: flex;
2518
justify-content: space-between;
@@ -72,7 +65,6 @@ const CasesDisplay: React.FC<ICasesDisplay> = ({
7265
</TitleContainer>
7366
<Search />
7467
<StatsAndFilters totalDisputes={numberDisputes ?? 0} closedDisputes={numberClosedDisputes ?? 0} />
75-
<Divider />
7668

7769
{disputes?.length === 0 ? (
7870
<h1>No cases found</h1>

0 commit comments

Comments
 (0)