fix(challenges): fixed challenge accepted without any new code

changed the location of .container rule

ISSUES CLOSED: #198
This commit is contained in:
Guy Even
2018-07-30 19:05:02 +03:00
committed by Kristofer Koishigawa
parent 6335a1521d
commit 96b39c14b6

View File

@ -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;",
@ -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\">",