Add another profile pic and make them look nice side by side

This commit is contained in:
Gabriel Augendre 2020-05-17 19:58:38 +02:00
parent 2560e34339
commit f58bfeba85

View file

@ -108,11 +108,18 @@ body {
} }
.pic-container { .pic-container {
display: block; display: flex;
text-align: center; justify-content: space-evenly;
flex-wrap: wrap;
margin-bottom: -3rem;
.profile-pic { .profile-pic {
max-width: 200px; max-width: 200px;
min-width: 100px;
border-radius: 10%;
padding: 1rem;
flex-shrink: 1;
flex-grow: 0;
} }
} }
} }