mirror of
https://gitea.smigz.com/smiggiddy/odin-codeprojects.git
synced 2025-06-29 05:15:35 -04:00
feat: added grid and basic styling
This commit is contained in:
parent
8a97cde4fa
commit
358c1c524c
3 changed files with 48 additions and 5 deletions
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue