diff --git a/README.md b/README.md
index e869094..495599e 100644
--- a/README.md
+++ b/README.md
@@ -4,6 +4,5 @@ Gewonnen hat beim Standardspiel derjenige, der das letzte Hölzchen nimmt (vgl.
ToDo:
-- Build-Pipeline
- Thumbnail / Icon anpassen
diff --git a/src/App.vue b/src/App.vue
index dd26823..badacab 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -12,133 +12,135 @@
-
-
-
Mensch
-
-
-
KI
-
-
-
-
-
-
-
-
-
-
-
- Anzahl Münzen
+
+
+
+
Mensch
-
- Mögliche Züge
-
-
- Gemerkter Zug
+
KI
-
-
- {{ element.anzahl_muenzen }}
-
-
-
-
-
-
-
-
-
-
- {{ this.ausgabe }}
+ {{ this.ausgabe }}
-
-
+
neues Spiel (Münzstand zurücksetzen)
@@ -242,7 +244,7 @@ export default {
initialisiere_spiel() {
this.wer_ist_dran_mensch = true;
this.aktueller_muenzen_stand = this.zustaende;
- this.ausgabe = "Spiel läuft";
+ this.ausgabe = "Das Spiel läuft.";
this.spielsituationen = [];
let zug_moeglichkeiten = [];
for (let i = 1; i <= this.max_muenzen_pro_zug; i++) {
@@ -295,7 +297,7 @@ export default {
if (
this.aktueller_muenzen_stand <= 0 ||
- this.wer_ist_dran_mensch &&
+ this.wer_ist_dran_mensch &&
this.spielsituationen[
this.spielsituationen.length - this.aktueller_muenzen_stand
].moegliche_zuege.length == 0
@@ -522,14 +524,14 @@ export default {
.grid-container-spalten-2 {
display: grid;
grid-template-columns: auto auto;
- background-color: #2196f3;
+ /* background-color: #2196f3; */
padding: 2px;
}
.grid-container-spalten-3 {
display: grid;
grid-template-columns: auto auto auto;
- background-color: #2196f3;
+ /* background-color: #2196f3; */
padding: 2px;
}
@@ -545,13 +547,13 @@ export default {
/*color: lightgreen;*/
color: black;
background-color: lightgreen;
- border: 1px solid lightgreen;
+ border: 1px solid white;
}
.inaktiv {
/* color: grey;*/
color: black;
- background-color: lightgray;
- border: 1px solid lightgray;
+ background-color: rgb(211, 211, 211, 0.8);
+ border: 1px solid white;
}