fix: make header max-w-4xl
This commit is contained in:
parent
0130e4020f
commit
0aa1c80e8d
|
@ -9,16 +9,16 @@ const lang = getLangFromUrl(Astro.url);
|
||||||
const translation = useTranslations(lang);
|
const translation = useTranslations(lang);
|
||||||
---
|
---
|
||||||
|
|
||||||
<header>
|
<header class="sticky flex justify-between top-0 bg-[rgb(var(--background))] z-10 max-w-4xl mx-auto p-4 text-lg">
|
||||||
<div class="left">
|
<div class="flex items-center">
|
||||||
<a href="https://auxolotl.org" class="brand">
|
<a href="https://auxolotl.org" class="flex items-center text-lg gap-4">
|
||||||
<Image class="icon" src={aux} alt="auxolotl.org logo" />
|
<Image class="w-12 h-12" src={aux} alt="auxolotl.org logo" />
|
||||||
<span class="title">auxolotl.org</span>
|
<span>Auxolotl</span>
|
||||||
</a>
|
</a>
|
||||||
</div>
|
</div>
|
||||||
<div class="right">
|
|
||||||
<nav>
|
<nav>
|
||||||
<ul>
|
<ul class="flex gap-4 items-center h-full">
|
||||||
<!--
|
<!--
|
||||||
<li><a href="https://auxolotl.org/contribute">Contribute</a></li>
|
<li><a href="https://auxolotl.org/contribute">Contribute</a></li>
|
||||||
-->
|
-->
|
||||||
|
@ -28,62 +28,4 @@ const translation = useTranslations(lang);
|
||||||
<li><a href="https://github.com/auxolotl">GitHub</a></li>
|
<li><a href="https://github.com/auxolotl">GitHub</a></li>
|
||||||
</ul>
|
</ul>
|
||||||
</nav>
|
</nav>
|
||||||
</div>
|
|
||||||
</header>
|
</header>
|
||||||
|
|
||||||
<style>
|
|
||||||
header {
|
|
||||||
position: sticky;
|
|
||||||
display: flex;
|
|
||||||
justify-content: space-between;
|
|
||||||
top: 0;
|
|
||||||
background: rgb(var(--background));
|
|
||||||
padding: 0.5rem 0;
|
|
||||||
z-index: 100;
|
|
||||||
}
|
|
||||||
|
|
||||||
.left {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
padding-left: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.left .brand {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
font-size: 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.left .brand .title {
|
|
||||||
padding-left: 0.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.icon {
|
|
||||||
width: 48px;
|
|
||||||
height: 48px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.right {
|
|
||||||
display: flex;
|
|
||||||
justify-content: flex-end;
|
|
||||||
align-items: center;
|
|
||||||
padding-right: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
.right nav {
|
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
|
||||||
}
|
|
||||||
|
|
||||||
.right nav ul {
|
|
||||||
display: flex;
|
|
||||||
list-style: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
.right nav ul li {
|
|
||||||
}
|
|
||||||
|
|
||||||
.right nav ul li:not(:last-child) {
|
|
||||||
margin-right: 1rem;
|
|
||||||
}
|
|
||||||
</style>
|
|
||||||
|
|
Loading…
Reference in a new issue