Primary justify-between
This commit is contained in:
parent
f7a8069859
commit
f8ba855338
2 changed files with 3 additions and 3 deletions
|
@ -2,7 +2,7 @@ import { JSXElement } from "solid-js";
|
||||||
|
|
||||||
export function Footer(): JSXElement {
|
export function Footer(): JSXElement {
|
||||||
return (
|
return (
|
||||||
<footer class="footer footer-center bottom-0 rounded bg-base-200 p-10 text-base-content">
|
<footer class="footer footer-center rounded bg-base-200 p-10 text-base-content">
|
||||||
<nav class="grid grid-flow-col gap-4">
|
<nav class="grid grid-flow-col gap-4">
|
||||||
<a class="link-hover link">About us</a>
|
<a class="link-hover link">About us</a>
|
||||||
<a class="link-hover link">Contact</a>
|
<a class="link-hover link">Contact</a>
|
||||||
|
|
|
@ -11,10 +11,10 @@ function Root(): JSXElement {
|
||||||
<>
|
<>
|
||||||
<GlobalStateProvider>
|
<GlobalStateProvider>
|
||||||
<FancyBackground />
|
<FancyBackground />
|
||||||
<div class="flex flex-col items-center">
|
<div class="flex flex-col items-center min-h-screen justify-between">
|
||||||
<Navbar />
|
<Navbar />
|
||||||
<LoginModal />
|
<LoginModal />
|
||||||
<div class="mb-8 flex min-h-[65vh] w-full flex-col items-center space-y-2 px-2 md:max-w-3xl">
|
<div class="mb-8 flex w-full flex-col items-center space-y-2 px-2 md:max-w-3xl ">
|
||||||
<Primary />
|
<Primary />
|
||||||
</div>
|
</div>
|
||||||
<Footer />
|
<Footer />
|
||||||
|
|
Loading…
Reference in a new issue