docs/src/components/Projects/Projects.module.css
PRavaga 56b6949cbf
projects images
Signed-off-by: PRavaga <trueravaga@gmail.com>
2023-09-06 21:06:15 +04:00

21 lines
316 B
CSS

.projects {
display: flex;
margin-top: 20px;
align-items: center;
gap: 20px;
}
.projects :not(:first-child) {
margin-left: 20px;
}
@media (max-width: 900px) {
.projects {
display: flex;
flex-direction: column;
}
.projects:not(:first-child) {
margin-left: 0;
margin-top: 20px;
}
}