This commit is contained in:
Eden Kirin
2023-03-25 18:45:31 +01:00
parent 1b745c756f
commit ed4d61b37b
5 changed files with 152 additions and 9 deletions

20
frontend/styles.css Normal file
View File

@ -0,0 +1,20 @@
body {
background-color: whitesmoke;
}
.board-container {
background-color: white;
border: 1px solid black;
}
.flex-grid {
display: flex;
justify-content: space-between;
grid-gap: 2px;
padding-bottom: 2px;
}
.cell {
flex: 1;
text-align: center;
background-color: beige;
}