Spaces:
Sleeping
Sleeping
Aryanshh commited on
Commit ·
b9ef58e
1
Parent(s): 5f4d425
style: Add RL agent note to tour and increase dashboard spacing
Browse files- dashboard/app.js +1 -1
- dashboard/style.css +6 -1
dashboard/app.js
CHANGED
|
@@ -11,7 +11,7 @@ const SPECS = {
|
|
| 11 |
const TUTORIAL_STEPS = [
|
| 12 |
{
|
| 13 |
title: "Mission: NetZero-Nav",
|
| 14 |
-
text: "Your goal is to sustain a profitable electronics business while hitting zero-carbon targets. Use the <strong>Command Console</strong> to manage your supply chain.",
|
| 15 |
target: "header"
|
| 16 |
},
|
| 17 |
{
|
|
|
|
| 11 |
const TUTORIAL_STEPS = [
|
| 12 |
{
|
| 13 |
title: "Mission: NetZero-Nav",
|
| 14 |
+
text: "Your goal is to sustain a profitable electronics business while hitting zero-carbon targets. Use the <strong>Command Console</strong> to manage your supply chain.<br><br><strong>Important Note:</strong> This is a simulation of what the AI Agent will be doing in the RL Env.",
|
| 15 |
target: "header"
|
| 16 |
},
|
| 17 |
{
|
dashboard/style.css
CHANGED
|
@@ -186,11 +186,12 @@ header {
|
|
| 186 |
font-weight: 700;
|
| 187 |
}
|
| 188 |
|
|
|
|
| 189 |
.main-grid {
|
| 190 |
display: grid;
|
| 191 |
grid-template-columns: 1.6fr 1fr;
|
| 192 |
gap: 2rem;
|
| 193 |
-
margin-bottom:
|
| 194 |
align-items: start; /* Don't stretch if content is small */
|
| 195 |
}
|
| 196 |
|
|
@@ -198,6 +199,10 @@ header {
|
|
| 198 |
.main-grid { grid-template-columns: 1fr; }
|
| 199 |
}
|
| 200 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 201 |
.floating-feedback {
|
| 202 |
position: fixed;
|
| 203 |
color: var(--primary-green);
|
|
|
|
| 186 |
font-weight: 700;
|
| 187 |
}
|
| 188 |
|
| 189 |
+
/* Layout Sections */
|
| 190 |
.main-grid {
|
| 191 |
display: grid;
|
| 192 |
grid-template-columns: 1.6fr 1fr;
|
| 193 |
gap: 2rem;
|
| 194 |
+
margin-bottom: 3rem;
|
| 195 |
align-items: start; /* Don't stretch if content is small */
|
| 196 |
}
|
| 197 |
|
|
|
|
| 199 |
.main-grid { grid-template-columns: 1fr; }
|
| 200 |
}
|
| 201 |
|
| 202 |
+
.metrics-grid, .details-section, .log-section, .guide-section {
|
| 203 |
+
margin-bottom: 3.5rem;
|
| 204 |
+
}
|
| 205 |
+
|
| 206 |
.floating-feedback {
|
| 207 |
position: fixed;
|
| 208 |
color: var(--primary-green);
|