We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0b66917 commit 462c700Copy full SHA for 462c700
index.css
@@ -39,8 +39,11 @@
39
}
40
41
@layer components {
42
+ .outlet-container {
43
+ @apply mt-14 sm:mt-18 md:mt-21 lg:mt-26 py-10 px-5 sm:px-10 md:px-20 lg:px-40 2xl:px-80 flex-1 flex bg-body;
44
+ }
45
.pages {
- @apply mt-14 sm:mt-18 md:mt-21 lg:mt-26 py-10 px-5 sm:px-10 md:px-20 lg:px-40 2xl:px-80 flex-1 space-y-4 md:space-y-8 bg-body;
46
+ @apply max-w-7xl w-full mx-auto space-y-4 md:space-y-8 flex-1;
47
48
49
src/layout/Layout.jsx
@@ -6,7 +6,9 @@ const Layout = () => {
6
return (
7
<main className={`min-h-screen w-screen flex flex-col`} >
8
<Header />
9
- <Outlet />
+ <div className="outlet-container">
10
+ <Outlet />
11
+ </div>
12
<Footer />
13
</main>
14
);
0 commit comments