Add container util + ghost footer (#539)
This commit is contained in:
@@ -42,7 +42,7 @@ function RootLayout() {
|
|||||||
<GitHubLogoIcon className="w-6 h-6" />
|
<GitHubLogoIcon className="w-6 h-6" />
|
||||||
</Link>
|
</Link>
|
||||||
</div>
|
</div>
|
||||||
<main className="pl-72">
|
<main className="pl-72 pb-4">
|
||||||
<Outlet />
|
<Outlet />
|
||||||
</main>
|
</main>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import { Outlet } from "react-router-dom";
|
|||||||
|
|
||||||
function SettingsPageLayout() {
|
function SettingsPageLayout() {
|
||||||
return (
|
return (
|
||||||
<div className="max-w-6xl mx-auto px-8">
|
<div className="container mx-auto px-8">
|
||||||
<main>
|
<main>
|
||||||
<Outlet />
|
<Outlet />
|
||||||
</main>
|
</main>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import { Outlet } from "react-router-dom";
|
|||||||
|
|
||||||
function TasksPageLayout() {
|
function TasksPageLayout() {
|
||||||
return (
|
return (
|
||||||
<div className="max-w-6xl mx-auto px-8">
|
<div className="container mx-auto px-8">
|
||||||
<main>
|
<main>
|
||||||
<Outlet />
|
<Outlet />
|
||||||
</main>
|
</main>
|
||||||
|
|||||||
@@ -2,7 +2,7 @@ import { Outlet } from "react-router-dom";
|
|||||||
|
|
||||||
function CreateNewTaskLayout() {
|
function CreateNewTaskLayout() {
|
||||||
return (
|
return (
|
||||||
<main className="max-w-6xl mx-auto px-8">
|
<main className="container mx-auto px-8">
|
||||||
<Outlet />
|
<Outlet />
|
||||||
</main>
|
</main>
|
||||||
);
|
);
|
||||||
|
|||||||
Reference in New Issue
Block a user