This commit is contained in:
2026-06-12 21:11:56 -04:00
parent 4277c3bd73
commit 5bb8bc7bab
2 changed files with 27 additions and 7 deletions
+12 -7
View File
@@ -3,11 +3,16 @@
<div class="sidebar">
<NavMenu/>
</div>
<main>
<article class="content px-4">
<TelerikRootComponent>
@Body
</TelerikRootComponent>
</article>
</main>
<div class="content-wrapper">
<main>
<article class="content px-4">
<TelerikRootComponent>
@Body
</TelerikRootComponent>
</article>
</main>
<footer class="footer">
<p>This website is not associated with <a href="https://earthbornegames.com/" target="_blank" rel="noopener noreferrer">Earthborne Games</a>.</p>
</footer>
</div>
</div>
+15
View File
@@ -8,6 +8,13 @@ main {
flex: 1;
}
.content-wrapper {
display: flex;
flex-direction: column;
flex: 1;
min-height: 100vh;
}
.sidebar {
background-color: var(--bg-sidebar);
border-right: 1px solid var(--border-color);
@@ -37,6 +44,14 @@ main {
text-overflow: ellipsis;
}
.footer {
text-align: center;
padding: 1rem;
font-size: 0.85rem;
color: var(--text-muted, #888);
border-top: 1px solid var(--border-color, #ddd);
}
@media (max-width: 640.98px) {
.top-row {
justify-content: space-between;