-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
291 redesign pages to use a black transparent background instead of c…
…ards (#295) * feat(frontend): 🎨 Change all sites to use new padding and colored background * strapi types probably forgotten from a previous merge
- Loading branch information
Magnus Alexander Strømseng
authored and
GitHub
committed
Apr 14, 2024
1 parent
167c747
commit 235ff0f
Showing
11 changed files
with
102 additions
and
292 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,5 @@ | ||
| import { PageColoredBackground } from "@/components/PageLayout"; | ||
| import React from "react"; | ||
| export default function Layout({ children }: { children: React.ReactNode }) { | ||
| return <PageColoredBackground>{children}</PageColoredBackground>; | ||
| } |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,5 @@ | ||
| import { PagePadding } from "@/components/PagePadding"; | ||
| import { PageColoredBackground } from "@/components/PageLayout"; | ||
| import React from "react"; | ||
| export default function Layout({ children }: { children: React.ReactNode }) { | ||
| return <PagePadding>{children}</PagePadding>; | ||
| return <PageColoredBackground>{children}</PageColoredBackground>; | ||
| } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.