Skip to content
This repository has been archived by the owner on Aug 23, 2024. It is now read-only.

Fix font family fallback #174

Merged
merged 2 commits into from
May 28, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion components/elements-v2/text.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,6 @@ const styledConfig = {
shouldForwardProp: (prop) => !cosmeticProps.includes(prop),
};
const BaseText = styled.span.withConfig(styledConfig)<TextProps>`
font-family: Manrope;
font-size: ${getTextSize};
font-weight: ${getTextWeight};
color: ${getTextColor};
Expand Down
2 changes: 0 additions & 2 deletions components/elements/button.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -343,15 +343,13 @@ export const HomePageButton = styled.button`
color: white;
border: none;

font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 16px;
line-height: 150%;

a {
color: white;
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 16px;
Expand Down
7 changes: 3 additions & 4 deletions components/pages/app/header.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -6,14 +6,14 @@ import { Unless } from 'react-if';
import { useTranslation } from 'react-i18next';

import {
BLOCKS_PATH,
HOME_PATH,
ORGANIZATIONS_PATH,
PROCESSES_PATH,
BLOCKS_PATH,
TRANSACTIONS_PATH,
VALIDATORS_PATH,
STATS_PATH,
TOOLS_PATH,
TRANSACTIONS_PATH,
VALIDATORS_PATH,
VERIFY,
} from '@const/routes';

Expand Down Expand Up @@ -290,7 +290,6 @@ const CTAButton = ({ url, children }: ILinkItemProps) => {

const CTA = styled(Link)`
color: inherit;
font-family: 'Manrope';
font-style: normal;
font-weight: 700;
font-size: 12.8px;
Expand Down
Loading