Skip to content

Commit 4b0811f

Browse files
committed
fix: style issue in courts page
1 parent 24b0a16 commit 4b0811f

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

web/src/pages/Courts/CourtDetails/index.tsx

+4-4
Original file line numberDiff line numberDiff line change
@@ -52,9 +52,9 @@ const CourtInfo = styled.div`
5252
const ButtonContainer = styled.div`
5353
display: flex;
5454
flex-wrap: wrap;
55-
flex-direction: column;
56-
align-items: flex-start;
57-
gap: 8px;
55+
flex-direction: row;
56+
justify-content: center;
57+
gap: 20px;
5858
5959
${landscapeStyle(
6060
() => css`
@@ -104,12 +104,12 @@ const CourtDetails: React.FC = () => {
104104
{items.length > 1 && items[0]?.value !== 1 ? <StyledBreadcrumb items={items} /> : null}
105105
</CourtInfo>
106106
<ButtonContainer>
107+
{!isProductionDeployment() && <ClaimPnkButton />}
107108
<HowItWorks
108109
isMiniGuideOpen={isStakingMiniGuideOpen}
109110
toggleMiniGuide={toggleStakingMiniGuide}
110111
MiniGuideComponent={Staking}
111112
/>
112-
{!isProductionDeployment() && <ClaimPnkButton />}
113113
</ButtonContainer>
114114
</CourtHeader>
115115
<StakePanel id={!isUndefined(id) ? id : ""} courtName={policy?.name} />

0 commit comments

Comments
 (0)