Skip to content

Commit c4e3a36

Browse files
committed
Removed navbar collapse
1 parent 7c8ae84 commit c4e3a36

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

Diff for: src/App.jsx

+2-5
Original file line numberDiff line numberDiff line change
@@ -129,10 +129,7 @@ function App() {
129129
<Container fluid>
130130
<Navbar expand="lg" className="bg-body-tertiary" pb={4} fixed="top">
131131
<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>
132+
<Col className="justify-content-end">
136133
<Row>
137134
<Navbar.Text>
138135
Score: {score}
@@ -146,7 +143,7 @@ function App() {
146143
</Col>
147144
</Navbar >
148145
</Container>
149-
<Container fluid>
146+
<Container pb={4} fluid>
150147
<Row>
151148
{pokemonToDisplay.slice(0, (pokemonToDisplay.length / 2) - 1).map((pokemon, index) => (
152149
<GameCard

0 commit comments

Comments
 (0)