Skip to content

Commit 97f214a

Browse files
committed
chore: better styling appeal tab
1 parent 872c9de commit 97f214a

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

web/src/pages/Cases/CaseDetails/Appeal/AppealHistory.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -11,9 +11,9 @@ import OptionCard from "./OptionCard";
1111
import { AppealHeader, StyledTitle } from ".";
1212

1313
const OptionsContainer = styled.div`
14-
display: flex;
15-
flex-wrap: wrap;
16-
gap: 24px;
14+
display: grid;
15+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
16+
gap: 16px;
1717
margin-top: 12px;
1818
`;
1919

web/src/pages/Cases/CaseDetails/Appeal/Classic/Options/StageOne.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,9 +18,9 @@ const Container = styled.div`
1818
`;
1919

2020
const OptionsContainer = styled.div`
21-
display: flex;
22-
flex-wrap: wrap;
23-
gap: 24px;
21+
display: grid;
22+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
23+
gap: 16px;
2424
margin-top: 12px;
2525
`;
2626

web/src/pages/Cases/CaseDetails/Appeal/Classic/Options/StageTwo.tsx

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,9 @@ const Container = styled.div`
2020
`;
2121

2222
const OptionsContainer = styled.div`
23-
display: flex;
24-
flex-wrap: wrap;
25-
gap: 24px;
23+
display: grid;
24+
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
25+
gap: 16px;
2626
margin-top: 12px;
2727
`;
2828

0 commit comments

Comments
 (0)