settings design

This commit is contained in:
Timur Ercan
2022-12-06 19:45:18 +01:00
parent 15947ed4c2
commit ad6e740279
3 changed files with 12 additions and 11 deletions

View File

@ -188,7 +188,7 @@ export default function Layout({ children }: any) {
<main>
<div className="mx-auto max-w-7xl sm:px-6 lg:px-8">
<div className="px-4 py-8 sm:px-0">{children}</div>
{children}
</div>
</main>
</div>

View File

@ -46,15 +46,13 @@ export default function Setttings() {
return (
<div>
<div className="py-10">
<header>
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<h1 className="text-3xl font-bold leading-tight tracking-tight text-brown">
Dashboard
</h1>
</div>
</header>
</div>
<header className="py-10">
<div className="mx-auto max-w-7xl px-4 sm:px-6 lg:px-8">
<h1 className="text-3xl font-bold leading-tight tracking-tight text-brown">
Dashboard
</h1>
</div>
</header>
<div className="mx-auto max-w-screen-xl px-4 pb-6 sm:px-6 lg:px-8 lg:pb-16">
<div className="overflow-hidden rounded-lg bg-white shadow">
<div className="divide-y divide-gray-200 lg:grid lg:grid-cols-12 lg:divide-y-0 lg:divide-x">

View File

@ -5,7 +5,10 @@ export default function Document(props) {
let pageProps = props.__NEXT_DATA__?.props?.pageProps;
return (
<Html className="h-full scroll-smooth font-normal antialiased" lang="en">
<Html
className="h-full bg-gray-100 scroll-smooth font-normal antialiased"
lang="en"
>
<Head>
<meta name="color-scheme"></meta>
</Head>