First commit - End of Project (maybe)

This commit is contained in:
Krzysztof KrzysiekSiemv Smaga
2025-02-19 00:32:11 +01:00
commit a897a3dcc0
12 changed files with 4950 additions and 0 deletions
+32
View File
@@ -0,0 +1,32 @@
.app {
display: flex;
margin: auto;
width: 100vw;
flex-direction: column;
align-items: center;
justify-content: center;
}
.game {
display: grid;
grid-template-columns: repeat(3, 120px);
grid-template-rows: repeat(3, 120px);
grid-gap: 2px;
background-color: black;
}
.game .square {
background-color: white;
display: flex;
justify-content: center;
align-items: center;
color: black;
font-size: 300%;
}
.reset-btn {
background-color: #6048de;
border-radius: 8px;
padding: 12px 8px;
margin-top: 8px;
}