Skip to content

Commit 9eb9a66

Browse files
committed
chore: more spacious star, css missing semicolon, more responsiveness check juror button
1 parent 77a87a2 commit 9eb9a66

File tree

3 files changed

+5
-3
lines changed

3 files changed

+5
-3
lines changed

web/src/components/Verdict/index.tsx

+3-1
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,15 @@
11
import React from "react";
22
import styled from "styled-components";
33

4+
import { responsiveSize } from "styles/responsiveSize";
5+
46
import DisputeTimeline from "./DisputeTimeline";
57
import FinalDecision from "./FinalDecision";
68

79
const Container = styled.div`
810
display: flex;
911
flex-wrap: wrap;
10-
gap: 24px;
12+
gap: ${responsiveSize(16, 24)};
1113
`;
1214

1315
interface IVerdict {

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ const Header = styled.h1`
4545
font-size: ${responsiveSize(20, 24)};
4646
align-items: center;
4747
flex: 1;
48-
gap: 8px;
48+
gap: ${responsiveSize(8, 12)};
4949
margin: 0;
5050
`;
5151

web/src/pages/Home/TopJurors/JurorCard/MobileCard.tsx

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ const Container = styled.div`
1919
width: 100%;
2020
background-color: ${({ theme }) => theme.whiteBackground};
2121
padding: 8px 8px 12px;
22-
border 1px solid ${({ theme }) => theme.stroke};
22+
border: 1px solid ${({ theme }) => theme.stroke};
2323
border-top: none;
2424
align-items: center;
2525
gap: 18px;

0 commit comments

Comments
 (0)