Skip to content

Commit 13cd388

Browse files
committed
fix: position open court at the right, change svg color
1 parent c522d54 commit 13cd388

File tree

2 files changed

+9
-2
lines changed

2 files changed

+9
-2
lines changed

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

+7
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ const Container = styled.div`
1313
flex-direction: row;
1414
gap: 16px;
1515
align-items: center;
16+
justify-content: space-between;
1617
1718
small {
1819
height: 100%;
@@ -37,6 +38,12 @@ const StyledButton = styled(LightButton)`
3738
color: ${({ theme }) => theme.primaryBlue};
3839
font-size: 14px;
3940
}
41+
> .button-svg {
42+
margin-right: 0;
43+
path {
44+
fill: ${({ theme }) => theme.primaryBlue};
45+
}
46+
}
4047
`;
4148

4249
interface ICourtName {

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,11 @@ const Container = styled.div`
1414
flex-direction: row;
1515
gap: 16px;
1616
width: 100%;
17-
justify-content: flex-end;
17+
justify-content: flex-start;
18+
align-items: center;
1819
1920
${landscapeStyle(
2021
() => css`
21-
align-items: center;
2222
width: auto;
2323
`
2424
)}

0 commit comments

Comments
 (0)