diff --git a/src/App.vue b/src/App.vue index 11039b6..4a92fd7 100644 --- a/src/App.vue +++ b/src/App.vue @@ -40,8 +40,9 @@ export default class App extends Vue { this.$data.encounters = [] this.$data.encounters.push(new Encounter({ name: 'Boss Fight' }, this.makeParty().concat([new Creatures.Withers(), new Creatures.Kenzie()]))) - this.$data.encounters.push(new Encounter({ name: 'Cafat' }, this.makeParty().concat([new Creatures.Cafat(), new Creatures.Wolf(), new Creatures.Wolf(), new Creatures.Wolf()]))) + this.$data.encounters.push(new Encounter({ name: 'Cafat' }, this.makeParty().concat([new Creatures.Cafat()]))) this.$data.encounters.push(new Encounter({ name: 'Dragon' }, this.makeParty().concat([new Creatures.Dragon()]))) + this.$data.encounters.push(new Encounter({ name: 'Wolves' }, this.makeParty().concat([new Creatures.Wolf(), new Creatures.Wolf(), new Creatures.Wolf(), new Creatures.Wolf()]))) this.$data.encounters.push(new Encounter({ name: 'Large Wah' }, this.makeParty().concat([new Creatures.Shingo()]))) this.$data.encounter = this.$data.encounters[0] @@ -104,7 +105,6 @@ body, html { width: 100%; height: 100%; overflow-x: hidden; - overflow-y: hidden; } #app { @@ -119,8 +119,6 @@ body, html { height: 100%; display: flex; flex-direction: column; - overflow-x: hidden; - overflow-y: hidden; } .tippy-box { diff --git a/src/components/Combat.vue b/src/components/Combat.vue index 00862a1..8e98612 100644 --- a/src/components/Combat.vue +++ b/src/components/Combat.vue @@ -1,11 +1,11 @@