mirror of
https://github.com/bubblecup-12/VogelSocialMedia.git
synced 2025-07-12 17:18:50 +00:00
22 lines
350 B
CSS
22 lines
350 B
CSS
|
|
.quilted-image-list {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: center;
|
|
align-items: center;
|
|
gap: 10px;
|
|
width: fit-content;
|
|
margin: auto;
|
|
}
|
|
|
|
|
|
|
|
@media only screen and (min-width: 768px) {
|
|
.quilted-image-list {
|
|
display: flex;
|
|
gap: 10px;
|
|
width: fit-content;
|
|
justify-content: center;
|
|
align-self: center;
|
|
}
|
|
}
|