Add experiment logs to the monitoring page #48
@@ -85,9 +85,31 @@
|
|||||||
background: #f9f9f9;
|
background: #f9f9f9;
|
||||||
border: 1px solid #ddd;
|
border: 1px solid #ddd;
|
||||||
padding: 1rem;
|
padding: 1rem;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05);
|
box-shadow: inset 0 0 3px rgba(0, 0, 0, 0.05);
|
||||||
|
|
||||||
|
height: 250px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.phaseBox ul {
|
||||||
|
list-style: none;
|
||||||
|
padding: 0;
|
||||||
|
margin: 0;
|
||||||
|
|
||||||
|
overflow-y: auto;
|
||||||
|
flex-grow: 1;
|
||||||
|
|
||||||
|
|
||||||
|
}
|
||||||
|
|
||||||
|
.phaseBox ul::-webkit-scrollbar {
|
||||||
|
width: 6px;
|
||||||
|
}
|
||||||
|
|
||||||
|
.phaseBox ul::-webkit-scrollbar-thumb {
|
||||||
|
background-color: #ccc;
|
||||||
|
border-radius: 10px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.phaseOverviewText {
|
.phaseOverviewText {
|
||||||
|
|||||||
@@ -190,11 +190,7 @@ const MonitoringPage: React.FC = () => {
|
|||||||
<StatusList title="Goals" items={goals} type="goal" />
|
<StatusList title="Goals" items={goals} type="goal" />
|
||||||
<StatusList title="Triggers" items={triggers} type="trigger" />
|
<StatusList title="Triggers" items={triggers} type="trigger" />
|
||||||
<StatusList title="Norms" items={norms} type="norm" />
|
<StatusList title="Norms" items={norms} type="norm" />
|
||||||
<StatusList
|
<StatusList title="Conditional Norms" items={conditionalNorms} type="cond_norm"/>
|
||||||
title="Conditional Norms"
|
|
||||||
items={conditionalNorms}
|
|
||||||
type="cond_norm"
|
|
||||||
/>
|
|
||||||
</main>
|
</main>
|
||||||
|
|
||||||
{/* LOGS */}
|
{/* LOGS */}
|
||||||
|
|||||||
Reference in New Issue
Block a user