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

Homepage patches #13902

Merged
merged 3 commits into from
Sep 18, 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
2 changes: 1 addition & 1 deletion src/components/BigNumber/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ const BigNumber = ({
>
{value ? (
<>
<div className="text-5xl font-bold">{value}</div>
<div className="text-4xl font-bold sm:text-5xl">{value}</div>
<div className="text-sm">
{children}
{sourceName && sourceUrl && (
Expand Down
1 change: 1 addition & 0 deletions src/lib/utils/rss.ts
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ export const postProcess = (rssItems: RSSItem[]) =>
...item,
imgSrc: "/images/vitalik-blog-banner.svg",
link: item.link.replace(".ca", ".eth.limo"),
sourceUrl: item.sourceUrl.replace(".ca", ".eth.limo"),
}
case SOLIDITY_FEED:
return {
Expand Down
2 changes: 1 addition & 1 deletion src/pages/index.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -423,7 +423,7 @@ const HomePage = ({
>
<AccordionTrigger className="flex border-t px-6 py-4 hover:bg-background-highlight">
<div className="flex flex-col items-start gap-y-0.5">
<p className="text-md font-bold text-body">
<p className="text-start text-md font-bold text-body">
{title}
</p>
<p className="text-start text-sm text-body-medium">
Expand Down
Loading