Compare commits

..

No commits in common. "a02b9c1cb9056076ace95521dabfdb8b38ad9e86" and "ca8458992e7dfcc190a957a671a04263f0f8b122" have entirely different histories.

View File

@ -43,7 +43,7 @@ body {
align-items: center;
gap: 6px;
padding: 5px 12px;
background: rgb(255, 255, 255);
background: rgba(255,255,255,0.45);
border-radius: 20px;
border: 2px solid rgba(255,255,255,0.8);
backdrop-filter: blur(8px);
@ -58,10 +58,9 @@ body {
.gameboard {
display: grid;
grid-template-columns: repeat(4, 160px);
grid-template-rows: repeat(3, 200px);
justify-content: center;
grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
gap: 25px;
justify-content: center;
margin: 20px auto;
}