mirror of
https://github.com/mitchell/mjfs.us.git
synced 2025-07-01 00:36:09 +00:00
18 lines
276 B
CSS
18 lines
276 B
CSS
.ProjectsContainer {
|
|
display: flex;
|
|
flex-flow: row wrap;
|
|
}
|
|
.ProjectsContainer div {
|
|
text-align: center;
|
|
padding: 5px;
|
|
margin: auto;
|
|
flex: 1 0 100%;
|
|
max-width: 50%;
|
|
}
|
|
|
|
@media screen and ( max-width: 500px ) {
|
|
.ProjectsContainer div {
|
|
max-width: 100%;
|
|
}
|
|
}
|