+
{{ $store.getters.activeTab.title }}
-
- Tab 1 content
-
-
-
- Tab 2 content
-
+
+
Tab 3 content
@@ -65,10 +62,12 @@
@@ -83,6 +82,7 @@ body,
html {
background: #e5e7eb;
+ overflow-y: hidden;
}
@@ -92,7 +92,7 @@ html {
}
main {
- grid-template-rows: 1fr auto auto 2fr;
+ grid-template-rows: minmax(0, 1fr) auto auto minmax(0, 2fr);
}
.units-background {
@@ -103,7 +103,4 @@ main {
opacity: 0.4;
height: calc(100% - 4rem); /* 4rem = top padding + bottom padding */
}
-
-.tabs {
-}
diff --git a/store/incremental.js b/store/incremental.js
index 04d87c8..e6878ef 100644
--- a/store/incremental.js
+++ b/store/incremental.js
@@ -14,6 +14,7 @@ export const state = () => ({
worker: 'Shaman',
boughtWith: null,
produces: currencies.seasons,
+ buyWorkersWith: currencies.months,
deviceCount: new Decimal(0),
workerCount: new Decimal(0),
unlockThreshold: { [currencies.seasons]: 0, tech: null },
@@ -23,6 +24,7 @@ export const state = () => ({
worker: 'Stonecarver',
boughtWith: currencies.seasons,
produces: currencies.months,
+ buyWorkersWith: currencies.days,
deviceCount: new Decimal(0),
workerCount: new Decimal(0),
unlockThreshold: { [currencies.seasons]: 1, tech: null },
@@ -31,6 +33,7 @@ export const state = () => ({
device: 'Astrolabes',
worker: 'Mathematician',
boughtWith: currencies.months,
+ buyWorkersWith: currencies.hours,
produces: currencies.days,
deviceCount: new Decimal(0),
workerCount: new Decimal(0),