DEVELOPMENT ENVIRONMENT

~liljamo/emerwen-web

14e0729381328bc2af9840dce46025c829b2aa2c — Jonni Liljamo 10 hours ago 6363d38
fix(components): better base layout
1 files changed, 3 insertions(+), 3 deletions(-)

M internal/components/base.templ
M internal/components/base.templ => internal/components/base.templ +3 -3
@@ 40,7 40,7 @@ templ Base(title string) {
			<title>{ title }</title>
		</head>
		<body>
			<main class="flex flex-col items-center w-full">
			<main class="flex flex-col items-center w-full min-h-screen justify-between">
				<div class="flex gap-2 p-8 w-full max-w-4xl items-center">
					<div class="group w-max">
						<a class="bg-size-200 bg-pos-0 group-hover:bg-pos-100


@@ 76,9 76,9 @@ templ Base(title string) {
					{ children... }
				</div>

				<footer class="fixed bottom-0 p-8">
				<div class="flex flex-col justify-self-end items-center pb-8 pt-2 gap-1">
					<img class="h-24" src="/static/createdwith.jpeg">
				</footer>
				</div>
			</main>
		</body>
	</html>