Skip to content

Commit 949c867

Browse files
authored
Merge pull request #13902 from ethereum/patches
Homepage patches
2 parents 3d6b3a0 + 4cba501 commit 949c867

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

src/components/BigNumber/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ const BigNumber = ({
4343
>
4444
{value ? (
4545
<>
46-
<div className="text-5xl font-bold">{value}</div>
46+
<div className="text-4xl font-bold sm:text-5xl">{value}</div>
4747
<div className="text-sm">
4848
{children}
4949
{sourceName && sourceUrl && (

src/lib/utils/rss.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ export const postProcess = (rssItems: RSSItem[]) =>
2020
...item,
2121
imgSrc: "/images/vitalik-blog-banner.svg",
2222
link: item.link.replace(".ca", ".eth.limo"),
23+
sourceUrl: item.sourceUrl.replace(".ca", ".eth.limo"),
2324
}
2425
case SOLIDITY_FEED:
2526
return {

src/pages/index.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -423,7 +423,7 @@ const HomePage = ({
423423
>
424424
<AccordionTrigger className="flex border-t px-6 py-4 hover:bg-background-highlight">
425425
<div className="flex flex-col items-start gap-y-0.5">
426-
<p className="text-md font-bold text-body">
426+
<p className="text-start text-md font-bold text-body">
427427
{title}
428428
</p>
429429
<p className="text-start text-sm text-body-medium">

0 commit comments

Comments
 (0)