From f58bfeba856dd049e5c995b31395225a1bbccccf Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Sun, 17 May 2020 19:58:38 +0200 Subject: [PATCH] Add another profile pic and make them look nice side by side --- style.scss | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/style.scss b/style.scss index 2400299..3602302 100644 --- a/style.scss +++ b/style.scss @@ -108,11 +108,18 @@ body { } .pic-container { - display: block; - text-align: center; + display: flex; + justify-content: space-evenly; + flex-wrap: wrap; + margin-bottom: -3rem; .profile-pic { max-width: 200px; + min-width: 100px; + border-radius: 10%; + padding: 1rem; + flex-shrink: 1; + flex-grow: 0; } } }