mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-04-18 23:41:17 -04:00
16 lines
273 B
CSS
16 lines
273 B
CSS
.container {
|
|
display: flex;
|
|
gap: 2rem;
|
|
justify-content: center;
|
|
flex-wrap: wrap;
|
|
align-items: stretch;
|
|
}
|
|
.card {
|
|
display: flex;
|
|
flex-direction: column;
|
|
max-width: calc(100% / 4);
|
|
justify-content: end;
|
|
/*flex: 1;*/
|
|
padding: 1.5rem;
|
|
margin: 1.5rem;
|
|
}
|