Primary justify-between

This commit is contained in:
Hollgy 2023-11-22 18:20:11 +01:00
parent f7a8069859
commit f8ba855338
2 changed files with 3 additions and 3 deletions

View file

@ -2,7 +2,7 @@ import { JSXElement } from "solid-js";
export function Footer(): JSXElement {
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">
<a class="link-hover link">About us</a>
<a class="link-hover link">Contact</a>

View file

@ -11,10 +11,10 @@ function Root(): JSXElement {
<>
<GlobalStateProvider>
<FancyBackground />
<div class="flex flex-col items-center">
<div class="flex flex-col items-center min-h-screen justify-between">
<Navbar />
<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 />
</div>
<Footer />