app: configure environment color

Blue will be reserved for the buttons, not the borders
This commit is contained in:
Laurens Valk
2020-05-29 10:24:05 -05:00
committed by David Lechner
parent c302b8aa91
commit d04958bb01
3 changed files with 8 additions and 4 deletions
+1 -1
View File
@@ -30,7 +30,7 @@ function App(): JSX.Element {
</Col>
</Row>
<Row>
<Col className="Terminal py-2">
<Col className="terminal py-2">
<Terminal />
</Col>
</Row>
+1 -1
View File
@@ -13,7 +13,7 @@ type StatusProps = StateProps;
class StatusBar extends React.Component<StatusProps> {
render(): JSX.Element {
return (
<div className="bg-info p-2">
<div className="status-bar p-2">
<ProgressBar className="w-25" now={this.props.progress} />
</div>
);