From b400688150e1d57a2fa13f9c6962e720b56366df Mon Sep 17 00:00:00 2001 From: Skmyhrm <75883837+Skmyhrm@users.noreply.github.com> Date: Mon, 4 Oct 2021 00:00:50 +0300 Subject: [PATCH] Misplaced width ellement added after solving In the exercise Style.css, there was no width element added on the .card selector. it's only added in the solution, so I think the width element should be moved to under the solution line. --- flex/07-flex-layout-2/solution/solution.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/flex/07-flex-layout-2/solution/solution.css b/flex/07-flex-layout-2/solution/solution.css index f1aa36a..3ca1867 100644 --- a/flex/07-flex-layout-2/solution/solution.css +++ b/flex/07-flex-layout-2/solution/solution.css @@ -25,7 +25,6 @@ body { border: 1px solid #eee; box-shadow: 2px 4px 16px rgba(0,0,0,.06); border-radius: 4px; - width: 300px; } /* SOLUTION */ @@ -78,10 +77,11 @@ a { .card { padding: 16px; margin: 16px; + width: 300px; } .footer { display: flex; align-items: center; justify-content: center; -} \ No newline at end of file +}