Skip to content

Commit be3968b

Browse files
committed
fix(web): correction on topjurors styling
1 parent aefcc48 commit be3968b

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

web/src/pages/Dashboard/WithHelpTooltip.tsx

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,12 @@ const Container = styled.div`
1010
`;
1111

1212
const HelpIcon = styled(_HelpIcon)`
13+
display: flex;
14+
align-items: center;
1315
height: 12px;
1416
width: 12px;
1517
fill: ${({ theme }) => theme.secondaryText};
16-
margin: 4px 4px 6px 8px;
18+
margin: 0 0 0 8px;
1719
1820
${landscapeStyle(
1921
() => css`

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ import WithHelpTooltip from "pages/Dashboard/WithHelpTooltip";
55

66
const Container = styled.div`
77
display: flex;
8+
color: ${({ theme }) => theme.secondaryText};
9+
810
font-size: 12px !important;
911
&::before {
1012
content: "Rewards";
1113
}
12-
color: ${({ theme }) => theme.secondaryText};
13-
align-items: center;
1414
1515
${landscapeStyle(
1616
() =>

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ const Header: React.FC = () => {
6161
<Rewards />
6262
<Coherency />
6363
</PlaceAndTitleAndRewardsAndCoherency>
64-
<HowItWorks onClick={() => toggleIsLevelMiniGuidesOpen()} />
64+
<HowItWorks />
6565
</Container>
6666
);
6767
};

0 commit comments

Comments
 (0)