Skip to content

Commit ac0d9c2

Browse files
committed
fix(web): disputecards aligned to left, shadearea without space-between
1 parent 1a9b3b0 commit ac0d9c2

File tree

4 files changed

+1
-3
lines changed

4 files changed

+1
-3
lines changed

web/src/components/CasesDisplay/CasesGrid.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,6 @@ import CasesListHeader from "./CasesListHeader";
1515
const GridContainer = styled.div`
1616
display: flex;
1717
flex-wrap: wrap;
18-
justify-content: center;
1918
align-items: center;
2019
gap: 24px;
2120
`;

web/src/components/DisputeCard/index.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,7 @@ import { isUndefined } from "utils/index";
1818
const StyledCard = styled(Card)`
1919
width: 100%;
2020
height: calc(272px + (296 - 270) * (min(max(100vw, 375px), 1250px) - 375px) / 875);
21+
2122
${landscapeStyle(
2223
() =>
2324
css`

web/src/components/LatestCases.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ const DisputeContainer = styled.div`
1818
display: flex;
1919
gap: 24px;
2020
flex-wrap: wrap;
21-
justify-content: center;
2221
`;
2322

2423
const LatestCases: React.FC<{ filters?: Dispute_Filter }> = ({ filters }) => {

web/src/pages/Cases/CaseDetails/Overview.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,6 @@ const StyledA = styled.a`
9797

9898
const LinkContainer = styled.div`
9999
display: flex;
100-
justify-content: space-between;
101100
gap: calc(8px + (24 - 8) * (min(max(100vw, 375px), 1250px) - 375px) / 875);
102101
`;
103102

0 commit comments

Comments
 (0)