ReactBootStrap.Navbar.Collapse is not working well. When I put the smaller browser the links are outside the button. Can you help?
Code:
{/* Navbar */}
<ReactBootStrap.Navbar collapseOnSelect expand="lg" bg="white" variant="light">
<ReactBootStrap.Navbar.Brand >
<img alt="" src={logo} width="" height=""/>
</ReactBootStrap.Navbar.Brand>
<ReactBootStrap.Navbar.Toggle aria-controls="resposive-navbar-nav"/>
<ReactBootStrap.Navbar.Collapse id="resposive-navbar-nav">
<ReactBootStrap.Nav className="ml-auto">
<ReactBootStrap.Nav.Link href="/">Início</ReactBootStrap.Nav.Link>
<ReactBootStrap.Nav.Link href="/">Sobre Mim</ReactBootStrap.Nav.Link>
<ReactBootStrap.Nav.Link href="/">Serviços</ReactBootStrap.Nav.Link>
<ReactBootStrap.Nav.Link href="/">Contacte-me</ReactBootStrap.Nav.Link>
<ReactBootStrap.Nav.Link href="/">ENG</ReactBootStrap.Nav.Link>
</ReactBootStrap.Nav>
</ReactBootStrap.Navbar.Collapse>
</ReactBootStrap.Navbar>
