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