Skip to content

Commit

Permalink
fix(web): correction on topjurors styling
Browse files Browse the repository at this point in the history
  • Loading branch information
kemuru committed Oct 31, 2023
1 parent aefcc48 commit be3968b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 4 deletions.
4 changes: 3 additions & 1 deletion web/src/pages/Dashboard/WithHelpTooltip.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,12 @@ const Container = styled.div`
`;

const HelpIcon = styled(_HelpIcon)`
display: flex;
align-items: center;
height: 12px;
width: 12px;
fill: ${({ theme }) => theme.secondaryText};
margin: 4px 4px 6px 8px;
margin: 0 0 0 8px;
${landscapeStyle(
() => css`
Expand Down
4 changes: 2 additions & 2 deletions web/src/pages/Home/TopJurors/Header/Rewards.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -5,12 +5,12 @@ import WithHelpTooltip from "pages/Dashboard/WithHelpTooltip";

const Container = styled.div`
display: flex;
color: ${({ theme }) => theme.secondaryText};
font-size: 12px !important;
&::before {
content: "Rewards";
}
color: ${({ theme }) => theme.secondaryText};
align-items: center;
${landscapeStyle(
() =>
Expand Down
2 changes: 1 addition & 1 deletion web/src/pages/Home/TopJurors/Header/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ const Header: React.FC = () => {
<Rewards />
<Coherency />
</PlaceAndTitleAndRewardsAndCoherency>
<HowItWorks onClick={() => toggleIsLevelMiniGuidesOpen()} />
<HowItWorks />
</Container>
);
};
Expand Down

0 comments on commit be3968b

Please sign in to comment.