style: minor changes

This commit is contained in:
log101 2024-05-08 11:16:38 +03:00
parent ddc1946787
commit cae66a752d
2 changed files with 2 additions and 2 deletions

View File

@ -33,7 +33,7 @@ import { CATEGORIES } from "../content/config";
<script>
import ConwaySimulator from "../scripts/conway-simulator";
let gol = new ConwaySimulator(10, 46, 10, 250);
let gol = new ConwaySimulator(8, 46, 10, 250);
document.getElementById("board")?.append(gol.canvas);
gol.start();
</script>

View File

@ -2,7 +2,7 @@
width: 750px;
display: flex;
flex-direction: column;
gap: 24px;
gap: 36px;
margin: 24px 0px;
}