Add site footer

This commit is contained in:
Keisuke Hirata 2026-07-09 02:58:53 +09:00
parent ea858ad28e
commit 2966d5b979
No known key found for this signature in database
2 changed files with 10 additions and 1 deletions

View File

@ -42,5 +42,6 @@ function renderNav(items, prefix = []) {
<slot />
</main>
</div>
<footer class="site-footer">2026 Hare</footer>
</body>
</html>

View File

@ -89,10 +89,18 @@ a:hover {
color: var(--topbar-link);
}
.site-footer {
border-top: 1px solid var(--border);
color: var(--subtle);
font-size: 0.9rem;
padding: 15px 24px;
text-align: center;
}
.layout {
display: grid;
grid-template-columns: 300px minmax(0, 1fr);
min-height: calc(100vh - 56px);
min-height: calc(100vh - 104px);
}
.playground-layout {