Skip to content

Commit

Permalink
Merge pull request #24 from ai16zpartners/fix_fonts
Browse files Browse the repository at this point in the history
Font family fix
  • Loading branch information
awidearray authored Nov 7, 2024
2 parents b775a06 + 03f008a commit 53934b1
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 16 deletions.
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

0 comments on commit 53934b1

Please sign in to comment.