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>
);
+6 -2
View File
@@ -2,12 +2,12 @@
// Copyright (c) 2020 The Pybricks Authors
// Override default variables before the import
$body-bg: #0088ce;
$body-bg: #e8e8e8;
// Import Bootstrap and its default variables
@import '~bootstrap/scss/bootstrap';
.Terminal {
.terminal {
height: 15vh;
}
@@ -19,3 +19,7 @@ $body-bg: #0088ce;
padding: 0px;
padding-right: 8px;
}
.status-bar {
background-color: #0088ce;
}