Skip to content

Commit bea87be

Browse files
committed
fix(web): some gap between court name and stake data
1 parent 9b8a25a commit bea87be

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

web/src/pages/Dashboard/Courts/CourtCard.tsx

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,14 +9,22 @@ import { useKlerosCoreGetJurorBalance } from "hooks/contracts/generated";
99

1010
const Card = styled(_Card)`
1111
display: flex;
12-
flex-direction: row;
12+
flex-direction: column;
1313
align-items: center;
1414
justify-content: space-between;
1515
height: auto;
1616
width: 100%;
1717
padding: 21.5px 32px 21.5px 27px;
1818
border-left: 5px solid ${({ theme }) => theme.secondaryPurple};
1919
flex-wrap: wrap;
20+
gap: 20px;
21+
22+
${landscapeStyle(
23+
() =>
24+
css`
25+
flex-direction: row;
26+
`
27+
)}
2028
`;
2129

2230
const CourtName = styled.div`

0 commit comments

Comments
 (0)