From b904ba15a25141f9efed5b9511bec0757d4eabd7 Mon Sep 17 00:00:00 2001 From: Martin Payne Date: Mon, 29 Oct 2018 16:44:31 -0400 Subject: [PATCH] Remove unnecessary space after grid-template-columns repeat in container class (#31528) I was working through this challenge and noticed an extra space in the challenge seed that was probably a typo so i'm making this PR to fix it. --- .../css-grid/create-flexible-layouts-using-auto-fit.english.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/01-responsive-web-design/css-grid/create-flexible-layouts-using-auto-fit.english.md b/curriculum/challenges/english/01-responsive-web-design/css-grid/create-flexible-layouts-using-auto-fit.english.md index 37c9d7fbb1..f8126a4a90 100644 --- a/curriculum/challenges/english/01-responsive-web-design/css-grid/create-flexible-layouts-using-auto-fit.english.md +++ b/curriculum/challenges/english/01-responsive-web-design/css-grid/create-flexible-layouts-using-auto-fit.english.md @@ -47,7 +47,7 @@ tests: width: 100%; background: LightGray; display: grid; - grid-template-columns: repeat( auto-fill, minmax(60px, 1fr)); + grid-template-columns: repeat(auto-fill, minmax(60px, 1fr)); grid-template-rows: 1fr 1fr 1fr; grid-gap: 10px; }