From 454befaa24444e83c1fce2c2d3b0965b1bc10aad Mon Sep 17 00:00:00 2001 From: Gator Date: Wed, 30 Nov 2022 20:57:26 +0100 Subject: [PATCH] renamed canvas component (again) and fixed some issues --- src/App.vue | 11 ++++---- src/components/{CanvasBoard.vue => Board.vue} | 26 +++++-------------- 2 files changed, 12 insertions(+), 25 deletions(-) rename src/components/{CanvasBoard.vue => Board.vue} (88%) diff --git a/src/App.vue b/src/App.vue index cf18b8c..5489aeb 100644 --- a/src/App.vue +++ b/src/App.vue @@ -3,19 +3,20 @@

Cellular Automata Explorer

- +
@@ -26,7 +27,7 @@ export const App = { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; text-align: center; - color: #2c3e50; + /* color: #2c3e50; */ } * { diff --git a/src/components/CanvasBoard.vue b/src/components/Board.vue similarity index 88% rename from src/components/CanvasBoard.vue rename to src/components/Board.vue index eda14c6..ba75795 100644 --- a/src/components/CanvasBoard.vue +++ b/src/components/Board.vue @@ -1,11 +1,12 @@