diff --git a/apps/web/index.html b/apps/web/index.html
index d154738..1b35069 100644
--- a/apps/web/index.html
+++ b/apps/web/index.html
@@ -5,6 +5,39 @@
diff --git a/apps/web/src/styles.css b/apps/web/src/styles.css
index 4045209..2e7bf50 100644
--- a/apps/web/src/styles.css
+++ b/apps/web/src/styles.css
@@ -26,6 +26,7 @@
--radius: 8px;
--radius-lg: 12px;
--font: "Segoe UI", system-ui, sans-serif;
+ --resource-bar-height: 3.5rem;
}
body {
@@ -136,6 +137,10 @@ body::before {
flex-direction: column;
align-items: center;
gap: 1rem;
+ position: sticky;
+ top: var(--resource-bar-height);
+ height: calc(100vh - var(--resource-bar-height));
+ overflow-y: auto;
}
.game-content {
@@ -3181,8 +3186,11 @@ body::before {
border-right: none;
flex-direction: row;
gap: 0.75rem;
+ height: auto;
justify-content: center;
padding: 0.5rem 0.75rem;
+ position: static;
+ top: auto;
width: 100%;
}