Added ratings page
This commit is contained in:
parent
e9cb1d9d54
commit
93c6bc7e80
16 changed files with 127 additions and 58 deletions
19
src/styles/Ratings.module.css
Normal file
19
src/styles/Ratings.module.css
Normal 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;
|
||||
}
|
Reference in a new issue