Skip to content

Commit 6ec0c93

Browse files
committed
chore: remove the thinner border
1 parent b1c7f2a commit 6ec0c93

File tree

5 files changed

+3
-13
lines changed

5 files changed

+3
-13
lines changed

web/src/components/DisputeView/DisputeCardView.tsx

-7
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,9 @@ import PeriodBanner from "./PeriodBanner";
1717

1818
const StyledCard = styled(Card)`
1919
${hoverShortTransitionTiming}
20-
border-width: 0.5px;
2120
width: 100%;
2221
height: 100%;
2322
min-height: 290px;
24-
25-
${landscapeStyle(
26-
() => css`
27-
border-width: 1px;
28-
`
29-
)}
3023
`;
3124

3225
const CardContainer = styled.div`

web/src/pages/Home/Community/index.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,13 @@ const StyledCard = styled(Card)`
2828
flex-wrap: wrap;
2929
padding: 16px;
3030
align-items: flex-start;
31-
border-width: 0.5px;
3231
3332
${landscapeStyle(
3433
() => css`
3534
flex-direction: row;
3635
justify-content: space-between;
3736
gap: 20px;
3837
padding: 24px 32px;
39-
border-width: 1px;
4038
`
4139
)}
4240
`;

web/src/pages/Home/CourtOverview/Stats.tsx

-2
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,6 @@ import StatDisplay, { IStatDisplay } from "components/StatDisplay";
2323
import { StyledSkeleton } from "components/StyledSkeleton";
2424

2525
const StyledCard = styled(Card)`
26-
border-width: 0.5px;
2726
display: grid;
2827
grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
2928
width: auto;
@@ -33,7 +32,6 @@ const StyledCard = styled(Card)`
3332
3433
${landscapeStyle(
3534
() => css`
36-
border-width: 1px;
3735
padding: 24px;
3836
`
3937
)}

web/src/pages/Home/TopJurors/Header/MobileHeader.tsx

+2-1
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,12 @@ const Container = styled.div`
1414
width: 100%;
1515
background-color: ${({ theme }) => theme.lightBlue};
1616
padding: 16px;
17-
border 0.5px solid ${({ theme }) => theme.stroke};
17+
border 1px solid ${({ theme }) => theme.stroke};
1818
border-top-left-radius: 3px;
1919
border-top-right-radius: 3px;
2020
border-bottom: none;
2121
flex-wrap: wrap;
22+
2223
${landscapeStyle(
2324
() => css`
2425
display: none;

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ const Container = styled.div`
2121
width: 100%;
2222
background-color: ${({ theme }) => theme.whiteBackground};
2323
padding: 8px 16px 12px;
24-
border: 0.5px solid ${({ theme }) => theme.stroke};
24+
border: 1px solid ${({ theme }) => theme.stroke};
2525
border-top: none;
2626
align-items: center;
2727
gap: 16px;

0 commit comments

Comments
 (0)