Merge pull request #105 from dm-murphy/fix/grid-exercise-1

Change solution back to pixels and fix gap
This commit is contained in:
Cody Loyd 2022-01-12 14:56:08 -06:00 committed by GitHub
commit d66f8bd3f3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 3 deletions

View File

@ -50,9 +50,9 @@ body, html {
.container {
display: grid;
grid-template-columns: 300px 1fr;
grid-template-rows: 80px 80px 1fr 80px;
gap: 16px;
grid-template-columns: 300px 900px;
grid-template-rows: 100px 100px 500px 100px;
gap: 15px;
}
.header {