O list-style: none; tá sendo aplicado, não entendo porque o background-image tá em branco. Já dei F5 e npm start de novo, e continua com background branco
import Header from './components/Header/index.js';
import styled from 'styled-components';
const AppContainer = styled.div`
.App {
width: 100vw;
height: 100vh;
background-image: linear-gradient(90deg, #002f52 35%, #326589);
}
li {
list-style: none;
}
`
function App() {
return (
<AppContainer>
<Header />
</AppContainer>
);
}
export default App;