mirror of
https://github.com/pybricks/pybricks-code.git
synced 2026-09-12 01:23:52 +00:00
app: remove duplicate padding due nested row/col
This commit is contained in:
committed by
David Lechner
parent
f8fa09d866
commit
c302b8aa91
@@ -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>
|
||||
|
||||
@@ -10,3 +10,12 @@ $body-bg: #0088ce;
|
||||
.Terminal {
|
||||
height: 15vh;
|
||||
}
|
||||
|
||||
.outer-container-col {
|
||||
padding: 0px;
|
||||
}
|
||||
|
||||
.inner-container-col {
|
||||
padding: 0px;
|
||||
padding-right: 8px;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user