Skip to content

Commit 1ef77a7

Browse files
authored
Merge pull request linode#16 from linode/DLC-smallUpdates
Small Adjustments
2 parents 31ab0e9 + 4be1351 commit 1ef77a7

File tree

3 files changed

+9
-5
lines changed

3 files changed

+9
-5
lines changed

src/components/4_layouts/layout.js

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -39,16 +39,16 @@ const Layout = ({ children, title, subtitle, fullWidth, noFooter }) => (
3939
{!noFooter && (
4040
<>
4141
{!fullWidth && (
42-
<div className="footer-nav-wrapper bg-black">
42+
<div className="footer-wrapper bg-BaseBlackFull">
4343
<footer className="max-w-3xl mx-auto py-8 px-4 md:px-8 text-white">
44-
<Footer />
44+
<FooterNav />
4545
</footer>
4646
</div>
4747
)}
4848
{!fullWidth && (
49-
<div className="footer-wrapper bg-BaseBlackFull">
49+
<div className="footer-nav-wrapper bg-black">
5050
<footer className="max-w-3xl mx-auto py-8 px-4 md:px-8 text-white">
51-
<FooterNav />
51+
<Footer />
5252
</footer>
5353
</div>
5454
)}

src/css/components/0_utilities/typography.css

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,10 @@ input[type="text"] {
1818
border-top-width: 1px;
1919
}
2020

21+
.kubernetes-body code {
22+
@apply p-4 mt-2 mb-2 bg-ThemeBeige block;
23+
}
24+
2125
.api-body code {
2226
@apply p-2 mt-2 mb-4 bg-ThemeBeige block;
2327
overflow-x: auto;

src/pages/kubernetes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ const KubernetesPage = () => {
1313
title="Kubernetes Tools"
1414
description="Create a Kubernetes Cluster with One Command"
1515
/>
16-
<div className="flex flex-wrap mb-8 -mx-4">
16+
<div className="flex flex-wrap mb-8 -mx-4 kubernetes-body">
1717
<div className="w-full px-4">
1818
<div className="my-4 md:mt-12 md:mt-8 max-w-3xl">
1919
<h2 className="font-normal text-BaseGreenDark text-center">

0 commit comments

Comments
 (0)