app: remove duplicate padding due nested row/col

This commit is contained in:
Laurens Valk
2020-05-29 10:24:05 -05:00
committed by David Lechner
parent f8fa09d866
commit c302b8aa91
2 changed files with 11 additions and 2 deletions
+2 -2
View File
@@ -14,10 +14,10 @@ function App(): JSX.Element {
<div>
<Container fluid className="vh-100 d-flex flex-column">
<Row>
<Col xs={12} md={8}>
<Col xs={12} md={8} className="outer-container-col">
<Container
fluid
className="vh-100 d-flex flex-column"
className="vh-100 d-flex flex-column inner-container-col"
>
<Row>
<Col>
+9
View File
@@ -10,3 +10,12 @@ $body-bg: #0088ce;
.Terminal {
height: 15vh;
}
.outer-container-col {
padding: 0px;
}
.inner-container-col {
padding: 0px;
padding-right: 8px;
}