mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-18 23:41:17 -04:00
16 lines
269 B
CSS
16 lines
269 B
CSS
.container {
|
|
display: flex;
|
|
gap: 2rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
align-items: stretch;
|
|
}
|
|
.card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: 350px;
|
|
justify-content: end;
|
|
padding: 1.5rem;
|
|
margin: 1.5rem;
|
|
background: gray;
|
|
}
|