Yesterday everything my app was working well until today. I have a react application with Bootstrap. Today I refreshed my application, and all CSS with Bootstrap stopped working.
In my package.json is "react-bootstrap": "^0.31.5", I also added a link to a script in the index.html like this:
<script src="http://code.jquery.com/jquery-3.2.1.js"></script>
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/latest/css/bootstrap.min.css">
For example, I added this code:
import { Navbar , Nav , Button , NavItem } from "react-bootstrap";
import './../css/styles.css';
<Navbar>
<Navbar.Header>
<Navbar.Brand>
<a href="#">React-Bootstrap</a>
</Navbar.Brand>
<Navbar.Toggle />
</Navbar.Header>
<Navbar.Collapse>
<Nav>
<NavItem eventKey={1} href="#">Link 1</NavItem>
<NavItem eventKey={2} href="#">Link 2</NavItem>
</Nav>
<Navbar.Form pullLeft>
{' '}
<Button type="submit">Submit</Button>
</Navbar.Form>
</Navbar.Collapse>
</Navbar>
and in my application is looking like this:
also GLyphicon not working like this:
<Glyphicon glyph="align-left" />
When I click on this small button in Navbar, show menu for only 1 sec and drop it up.
Do you have any solution, to fix this?