Skip to content

Commit 73bd737

Browse files
committed
minor tweaks and fixes
1 parent 4318db7 commit 73bd737

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/pages/run-a-node.tsx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ const GappedContent = (props: ChildOnlyProp) => (
6262
/>
6363
)
6464

65-
const Content = (props: ChildOnlyProp) => (
65+
const Content = (props: HTMLAttributes<HTMLDivElement>) => (
6666
<div className="w-full px-8 py-4" {...props} />
6767
)
6868

@@ -139,7 +139,7 @@ const BuildBox = ({
139139
...props
140140
}: HTMLAttributes<HTMLHeadingElement>) => (
141141
<Container
142-
className={cn("flex-1 flex-col bg-background-low p-8", className)}
142+
className={cn("flex-1 flex-col bg-background-highlight p-8", className)}
143143
{...props}
144144
/>
145145
)
@@ -194,11 +194,11 @@ const Text = ({ className, ...props }: HTMLAttributes<HTMLHeadingElement>) => (
194194
)
195195

196196
const Width60 = (props: ChildOnlyProp) => (
197-
<div className="w-full flex-[300%]" {...props} />
197+
<div className="w-full flex-[3]" {...props} />
198198
)
199199

200200
const Width40 = (props: ChildOnlyProp) => (
201-
<Center className="w-full flex-[200%]" {...props} />
201+
<Center className="w-full flex-[2]" {...props} />
202202
)
203203

204204
type RunANodeCard = {
@@ -329,7 +329,7 @@ const RunANodePage = () => {
329329
</div>
330330
</div>
331331

332-
<Content>
332+
<Content id="what-is-a-node">
333333
<TwoColumnContent>
334334
<Width60>
335335
<H2>
@@ -414,7 +414,7 @@ const RunANodePage = () => {
414414

415415
<Divider />
416416

417-
<Content>
417+
<Content id="getting-started">
418418
<H2>{t("page-run-a-node-getting-started-title")}</H2>
419419
<GappedContent>
420420
<SoftwareHighlight className="bg-[#ccfcff] dark:bg-[#293233]">
@@ -493,7 +493,7 @@ const RunANodePage = () => {
493493
<ul>
494494
<li>{t("page-run-a-node-buy-fully-loaded-note-1")}</li>
495495
<li>{t("page-run-a-node-buy-fully-loaded-note-2")}</li>
496-
<li className="mb-0">
496+
<li className="mb-0 font-bold">
497497
<code>{t("page-run-a-node-buy-fully-loaded-note-3")}</code>
498498
</li>
499499
</ul>
@@ -537,7 +537,7 @@ const RunANodePage = () => {
537537
</MarginFlex>
538538
</Content>
539539

540-
<Content>
540+
<Content id="build-your-own">
541541
<H2>{t("page-run-a-node-build-your-own-title")}</H2>
542542

543543
<BuildContainer>

0 commit comments

Comments
 (0)