From 3ebb0cde83975dd04db8ef2255a560c84fab5392 Mon Sep 17 00:00:00 2001 From: Alexander Date: Fri, 19 Feb 2021 23:05:57 -0500 Subject: [PATCH] Corrected Cards Container styles: layout now in accordance with figma --- src/stylesheets/Container.css | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/stylesheets/Container.css b/src/stylesheets/Container.css index 2ffe00c..9b9c7b6 100644 --- a/src/stylesheets/Container.css +++ b/src/stylesheets/Container.css @@ -4,7 +4,7 @@ flex-direction: column; align-items: center; max-width: 832px; - margin: auto; + margin: 32px auto 0px auto; max-height: 665px; } @@ -21,7 +21,10 @@ } .container__cards { + max-height: 665px; display: flex; + flex-direction: column; gap: 32px; flex-wrap: wrap; + align-content: center; }