Skip to content
This repository has been archived by the owner on Sep 25, 2019. It is now read-only.

Commit

Permalink
fix(challenges): fixed challenge accepted without any new code
Browse files Browse the repository at this point in the history
changed the location of .container rule

ISSUES CLOSED: #198
  • Loading branch information
gforce2k5 authored and scissorsneedfoodtoo committed Aug 7, 2018
1 parent 6335a15 commit 96b39c1
Showing 1 changed file with 14 additions and 14 deletions.
28 changes: 14 additions & 14 deletions challenges/01-responsive-web-design/css-grid.json
Original file line number Diff line number Diff line change
Expand Up @@ -1493,6 +1493,20 @@
"name": "index",
"contents": [
"<style>",
" .container {",
" font-size: 1.5em;",
" min-height: 300px;",
" width: 100%;",
" background: LightGray;",
" display: grid;",
" grid-template-columns: auto 1fr;",
" grid-template-rows: auto 1fr auto;",
" grid-gap: 10px;",
" grid-template-areas:",
" \"advert header\"",
" \"advert content\"",
" \"advert footer\";",
" }",
" .item1 {",
" background: LightSkyBlue;",
" grid-area: header;",
Expand Down Expand Up @@ -1525,20 +1539,6 @@
" background: BlanchedAlmond;",
" }",
" ",
" .container {",
" font-size: 1.5em;",
" min-height: 300px;",
" width: 100%;",
" background: LightGray;",
" display: grid;",
" grid-template-columns: auto 1fr;",
" grid-template-rows: auto 1fr auto;",
" grid-gap: 10px;",
" grid-template-areas:",
" \"advert header\"",
" \"advert content\"",
" \"advert footer\";",
" }",
"</style>",
" ",
"<div class=\"container\">",
Expand Down

0 comments on commit 96b39c1

Please sign in to comment.