Hola, estoy teniendo problemas con el FondoGradiente, estoy haciendo lo mismo que en la lección pero no se muestra el fondo como en el video.
import styled from "styled-components"
import GlobalStyle from "./components/GlobalStyles"
const FondoGradiente = styled.div`
background: linear-gradient(175deg, #041833 4.16%, #04244f 48%, #154580 96.76%);
width: 100%;
min-height: 100vh;
`
function App() {
return (
<>
<FondoGradiente>
<GlobalStyle></GlobalStyle>
</FondoGradiente>
</>
)
}
export default App