feat: added grid and basic styling

This commit is contained in:
Smigz 2023-12-14 10:32:14 -05:00
parent 8a97cde4fa
commit 358c1c524c
3 changed files with 48 additions and 5 deletions

View file

@ -20,3 +20,13 @@ header h1 {
justify-content: center;
align-items: center;
}
.content>.game-area {
display: grid;
grid-area: 1 / 1 / 4 / 4;
gap: 15px;
grid-template-rows: repeat(3, 50px);
grid-template-columns: repeat(3, 50px);
justify-items: center;
align-items: center;
}