From dd6b001a1e62c07aed63ff5dcb6241ebfacee220 Mon Sep 17 00:00:00 2001 From: NateTewolde <104654391+NateTewolde@users.noreply.github.com> Date: Sun, 5 Jun 2022 13:09:35 -0700 Subject: [PATCH] Remove a duplicate line of code from solution.css There is a text-align:center in the .container block under the /*SOLUTION*/ comment when there is already a text-align:center within the original .container block on line 7. --- grid/03-grid-layout-3/solution/solution.css | 1 - 1 file changed, 1 deletion(-) diff --git a/grid/03-grid-layout-3/solution/solution.css b/grid/03-grid-layout-3/solution/solution.css index a720c82..124b313 100644 --- a/grid/03-grid-layout-3/solution/solution.css +++ b/grid/03-grid-layout-3/solution/solution.css @@ -110,7 +110,6 @@ display: grid; grid-template-columns: 1fr 4fr; gap: 4px; - text-align: center; } .header {