fix(challenges): minor css grid typo

This commit is contained in:
Alan Ayala
2018-07-12 18:40:12 -05:00
committed by Kristofer Koishigawa
parent ab912e4fe2
commit f1474303e6

View File

@ -382,7 +382,7 @@
"id": "5a9036ee38fddaf9a66b5d37",
"title": "Add Gaps Faster with grid-gap",
"description": [
"<code>grid-gap</code> is a shorthand property for <code>grid-row-gap</code> and <code>grid-column-gap</code> from the previous two challenges that's more convenient to use. If <code>grid-gap</code> has one value, it will a create a gap between all rows and columns. However, if there are two values, it will use the first one to set the gap between the rows and the second value for the columns.",
"<code>grid-gap</code> is a shorthand property for <code>grid-row-gap</code> and <code>grid-column-gap</code> from the previous two challenges that's more convenient to use. If <code>grid-gap</code> has one value, it will create a gap between all rows and columns. However, if there are two values, it will use the first one to set the gap between the rows and the second value for the columns.",
"<hr>",
"Use <code>grid-gap</code> to introduce a <code>10px</code> gap between the rows and <code>20px</code> gap between the columns."
],