From ec0e13bd8a359f81e07300cac3648cb3b4909508 Mon Sep 17 00:00:00 2001 From: Maciej Caderek Date: Sun, 13 Mar 2022 21:41:50 +0100 Subject: [PATCH] WIP --- favicon.svg | 6 ++++-- index.html | 2 +- public/img/logo-dark.svg | 16 ++++++---------- public/img/logo.svg | 16 ++++++---------- src/main.tsx | 4 ++-- 5 files changed, 19 insertions(+), 25 deletions(-) diff --git a/favicon.svg b/favicon.svg index 796371e..a29cdb2 100644 --- a/favicon.svg +++ b/favicon.svg @@ -1,4 +1,6 @@ - - + + + + diff --git a/index.html b/index.html index c36bdd7..c128059 100644 --- a/index.html +++ b/index.html @@ -11,7 +11,7 @@ rel="stylesheet" href="https://maxst.icons8.com/vue-static/landings/line-awesome/line-awesome/1.3.0/css/line-awesome.min.css" /> - SHORTCASTLE + SHARECHESS
diff --git a/public/img/logo-dark.svg b/public/img/logo-dark.svg index 8de93c5..1795279 100644 --- a/public/img/logo-dark.svg +++ b/public/img/logo-dark.svg @@ -1,11 +1,7 @@ - - - - - - - - - - + + + + + + diff --git a/public/img/logo.svg b/public/img/logo.svg index ae482d7..3b6be6b 100644 --- a/public/img/logo.svg +++ b/public/img/logo.svg @@ -1,11 +1,7 @@ - - - - - - - - - - + + + + + + diff --git a/src/main.tsx b/src/main.tsx index cfc6d95..c50889a 100644 --- a/src/main.tsx +++ b/src/main.tsx @@ -137,7 +137,7 @@ const main = async () => { setState("boardConfig", "flipped", side === "b"); - document.title = `SHORTCASTLE - ${game.getTitle({ anonymous: false })}`; + document.title = `SHARECHESS - ${game.getTitle({ anonymous: false })}`; }, async loadFEN(fen: string, hash = true) { const game = new Game().loadFEN(fen); @@ -167,7 +167,7 @@ const main = async () => { setState("boardConfig", "flipped", side === "b"); - document.title = `SHORTCASTLE - FEN ${fen}`; + document.title = `SHARECHESS - FEN ${fen}`; }, async load(data: string) { if (isFEN(data)) {