Added ratings page

This commit is contained in:
“Henry-Hiles” 2022-11-02 11:15:42 -04:00
parent e9cb1d9d54
commit 93c6bc7e80
16 changed files with 127 additions and 58 deletions

View file

@ -0,0 +1,19 @@
.Container {
display: flex;
align-items: center;
flex-direction: column;
gap: 1.5em;
color: white;
padding: 10px;
padding-top: 90px;
}
.CardList {
display: grid;
justify-items: center;
width: 100%;
padding: 20px;
grid-template-columns: repeat(auto-fit, minmax(250px, 300px));
gap: 20px;
text-align: center;
}