Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Font family fix #24

Merged
merged 1 commit into from
Nov 7, 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
8 changes: 4 additions & 4 deletions src/components/LeaderboardHoldingTotals.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@
justify-content: flex-start;
font-size: 12px;
color: rgba(255, 255, 255, 0.7);
font-family: 'Open Runde';
font-family: var(--font-family-base);
}

.numberAndBadgeParent {
Expand Down Expand Up @@ -243,15 +243,15 @@
}

.statValue {
font-family: 'SF Pro Display', -apple-system, BlinkMacSystemFont, sans-serif;
font-family: var(--font-family-base);
font-size: 36px;
font-weight: 700;
color: #FFFFFF;
line-height: 1.2;
}

.statLabel {
font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
font-family: var(--font-family-base);
font-size: 14px;
font-weight: 500;
color: rgba(255, 255, 255, 0.9);
Expand All @@ -265,7 +265,7 @@
background: linear-gradient(180deg, #f98c13, #ffaf03);
border-radius: 24px;
color: #FFFFFF;
font-family: 'SF Pro Text', -apple-system, BlinkMacSystemFont, sans-serif;
font-family: var(--font-family-base);
}

@media (max-width: 768px) {
Expand Down
10 changes: 5 additions & 5 deletions src/components/LeaderboardHoldings.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
gap: 14px;
font-size: 12px;
color: #000000;
font-family: 'Open Runde';
font-family: var(--font-family-base);
}
.text {
width: 20px;
Expand Down Expand Up @@ -135,7 +135,7 @@
text-align: left;
font-size: 16px;
color: #000000;
font-family: 'SF Compact Rounded';
font-family: var(--font-family-base);
}

.container {
Expand All @@ -150,7 +150,7 @@
width: 100%;
border-collapse: separate;
border-spacing: 0;
font-family: 'SF Compact Rounded', sans-serif;
font-family: var(--font-family-base);
font-weight: bold;
}

Expand Down Expand Up @@ -204,7 +204,7 @@
}

.daoInfo span {
font-family: 'SF Compact Rounded', sans-serif;
font-family: var(--font-family-base);
font-weight: bold;
}

Expand All @@ -217,7 +217,7 @@
gap: 14px;
font-size: 12px;
color: #000000;
font-family: 'SF Compact Rounded';
font-family: var(--font-family-base);
font-weight: bold;
}

Expand Down
4 changes: 2 additions & 2 deletions src/components/LeaderboardTotals.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
text-align: left;
font-size: 24px;
color: #fff;
font-family: 'SF Compact Rounded';
font-family: var(--font-family-base);
}

.instanceParent {
Expand Down Expand Up @@ -55,7 +55,7 @@
justify-content: flex-start;
font-size: 12px;
color: rgba(255, 255, 255, 0.7);
font-family: 'Open Runde';
font-family: var(--font-family-base);
}

.heading {
Expand Down
4 changes: 2 additions & 2 deletions src/components/ProfileHoldings.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
gap: 14px;
font-size: 12px;
color: #9b8d7d;
font-family: 'Open Runde';
font-family: var(--font-family-base);
}
.text {
width: 20px;
Expand Down Expand Up @@ -134,7 +134,7 @@
text-align: left;
font-size: 16px;
color: #3c3626;
font-family: 'SF Compact Rounded';
font-family: var(--font-family-base);
}

.container {
Expand Down
2 changes: 1 addition & 1 deletion src/components/ProfileWallets.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@
text-align: left;
font-size: 18px;
color: #242424;
font-family: 'SF Compact Rounded';
font-family: var(--font-family-base);
margin: 0 24px;
}
.title {
Expand Down
2 changes: 1 addition & 1 deletion src/components/nav-element/NavBar.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
align-items: center;
text-decoration: none;
color: #242424;
font-family: 'SF Compact Rounded', sans-serif;
font-family: var(--font-family-base);
font-weight: 500;
}

Expand Down
2 changes: 1 addition & 1 deletion src/views/home/index.module.css
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
flex-direction: column;
align-items: center;
padding: 32px 16px;
font-family:'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
font-family: var(--font-family-base);
}

.content {
Expand Down
Loading