not sure of change, perhaps just blankspaces, but wanted to save before starting

This commit is contained in:
Andreas Jönsson 2025-04-22 14:13:01 +02:00
parent e876a8b5a7
commit 0905df5249
2 changed files with 14 additions and 1 deletions

View File

@ -11,6 +11,7 @@
<h3>Score:<span id="score">0</span></h3>
<button id="start-button">Start/Pause</button>
<div class="grid">
<div></div>
<div></div>
@ -212,7 +213,6 @@
<div></div>
<div></div>
<div></div>
<div></div>
</div>
</body>
</html>

View File

@ -0,0 +1,13 @@
.grid {
width: 200px;
height: 400px;
display: flex;
flex-wrap: wrap;
background-color: yellow;
}
.grid div {
height: 20px;
width: 20px;
background-color: red;
}