This repository has been archived on 2025-03-25. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
movie-react-app/src/styles/Ratings.module.css
2022-11-10 11:21:54 -05:00

28 lines
450 B
CSS

.Container {
display: flex;
align-items: center;
flex-direction: column;
gap: 1.5em;
color: white;
padding: 10px;
}
.CardList {
display: grid;
justify-items: center;
width: 100%;
padding: 20px;
grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
gap: 20px;
text-align: center;
}
.Header {
font-size: 3em;
margin: 10px;
}
.NoMovies {
width: 100%;
text-align: center;
}