We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7c8ae84 commit c4e3a36Copy full SHA for c4e3a36
src/App.jsx
@@ -129,10 +129,7 @@ function App() {
129
<Container fluid>
130
<Navbar expand="lg" className="bg-body-tertiary" pb={4} fixed="top">
131
<Navbar.Brand href="#home">Pokemon Memorization</Navbar.Brand>
132
- <Navbar.Toggle aria-controls="basic-navbar-nav" />
133
- <Navbar.Collapse id="basic-navbar-nav">
134
- </Navbar.Collapse>
135
- <Col>
+ <Col className="justify-content-end">
136
<Row>
137
<Navbar.Text>
138
Score: {score}
@@ -146,7 +143,7 @@ function App() {
146
143
</Col>
147
144
</Navbar >
148
145
</Container>
149
- <Container fluid>
+ <Container pb={4} fluid>
150
151
{pokemonToDisplay.slice(0, (pokemonToDisplay.length / 2) - 1).map((pokemon, index) => (
152
<GameCard
0 commit comments