feat: add header styles

This commit is contained in:
2024-04-20 23:42:55 +02:00
parent 6ad5740392
commit 6949492af3

View File

@@ -7,9 +7,13 @@ export function Layout() {
const isLoading = fetching > 0; const isLoading = fetching > 0;
return ( return (
<div className={"p-6 mx-auto max-w-screen-lg"}> <div className={"mx-auto max-w-screen-lg p-6"}>
<header className={"flex items-center justify-between"}> <header
<h1> className={
"mb-4 flex items-center justify-between border-b border-b-slate-400 py-2"
}
>
<h1 className={"text-2xl font-semibold text-sky-600"}>
<Link to={"/"}>Podcaster</Link> <Link to={"/"}>Podcaster</Link>
</h1> </h1>
{isLoading && <Spinner />} {isLoading && <Spinner />}