Inside my react project, inside my index.css, I have
*{
background-color: black;
color: white;
}
to give the entire website a dark theme. However, when I create a table like this with react-bootstrap:
<Table striped bordered variant="dark">
<th></th>
// etc.
</Table>
my index.css file overrides this and keeps the table completely black, instead of having it like how I want it, which can be found here.
How would I stop this from happening? Thanks!