Skip to content

Commit 39c90a9

Browse files
committed
Fix
1 parent 2e4727e commit 39c90a9

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

src/app/components/page/page.scss

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22
$side-padding: 48px;
33
margin: auto;
44
padding: 0 48px;
5-
width: calc(100% - 2 * $side-padding);
5+
width: 100%;
6+
padding-bottom: 32px;
67

78
.page-inner {
89
margin: auto;

src/app/globals.scss

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ body {
1717

1818
#main-content {
1919
flex-grow: 1;
20+
display: flex;
2021
}
2122

2223
h1,

src/app/resources/cartoons/page.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import "./cartoons.scss";
44
import { Metadata } from "next";
55
import { Banner, BannerTitles } from "@/app/components/banner/banner";
66
import { Row } from "@/app/components/layout/layout-components";
7-
import { Button } from "@/app/components/button/button";
7+
import { Button } from "@/app/components/button/button.server";
88

99
export const metadata: Metadata = { title: "Cartoons" };
1010

src/app/resources/policies/policies.scss

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
@include title-font;
2626

2727
.document-icon {
28-
$size: 80px;
28+
$size: 64px;
2929
width: $size;
3030
height: $size;
3131
padding-top: 48px;

0 commit comments

Comments
 (0)