Looking for a way to make Nav.Link components the same width?
<Navbar bg="dark" variant="dark" fixed="bottom">
<Nav className="me-auto">
<Container>
<Row>
<Col>
<Nav.Link href="#search">🔍</Nav.Link>
</Col>
<Col>
<Nav.Link href="#start-a-thread">➕</Nav.Link>
</Col>
</Row>
</Container>
</Nav>
</Navbar>
Unfortunately, they seem to be aligning to the left as shown here:
https://i.sstatic.net/ZA6GA.png
It appears that each Col
component should have equal widths based on Auto-layout columns, but this is not the case.
System Details
- Operating System: MacOS 13.0
- Node.js Version: 18.11.0
- React Version: 18.2.0
- React Bootstrap Version: 2.5.0
- Browser: Google Chrome 107.0.5304.87
Thank you for taking the time to read this. Any assistance would be greatly appreciated.