mirror of
https://github.com/zhigang1992/reactfire.git
synced 2026-06-14 10:08:57 +08:00
16 lines
226 B
CSS
16 lines
226 B
CSS
.container {
|
|
padding: 0;
|
|
margin: 0;
|
|
list-style: none;
|
|
display: flex;
|
|
justify-content: space-evenly;
|
|
flex-wrap: wrap;
|
|
}
|
|
|
|
.card {
|
|
padding: 10px;
|
|
border: 1px solid black;
|
|
margin-top: 10px;
|
|
min-width: 400px;
|
|
}
|