diff --git a/web/assets/css/index.css b/web/assets/css/game.css similarity index 98% rename from web/assets/css/index.css rename to web/assets/css/game.css index 1e27b1f..e5e451b 100644 --- a/web/assets/css/index.css +++ b/web/assets/css/game.css @@ -48,8 +48,8 @@ main { .cell { border: 1px solid #333333; - width: 35px; - height: 35px; + width: 30px; + height: 30px; transition: all 0.2s ease; display: flex; align-items: center; diff --git a/web/assets/js/index.js b/web/assets/js/game.js similarity index 97% rename from web/assets/js/index.js rename to web/assets/js/game.js index d0cfac7..e234d2e 100644 --- a/web/assets/js/index.js +++ b/web/assets/js/game.js @@ -24,7 +24,7 @@ let grid = [ [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + [1, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], ]