diff --git a/src/App.vue b/src/App.vue index b7e26e4..11039b6 100644 --- a/src/App.vue +++ b/src/App.vue @@ -40,7 +40,7 @@ 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()]))) + 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: 'Dragon' }, this.makeParty().concat([new Creatures.Dragon()]))) this.$data.encounters.push(new Encounter({ name: 'Large Wah' }, this.makeParty().concat([new Creatures.Shingo()]))) @@ -104,6 +104,7 @@ body, html { width: 100%; height: 100%; overflow-x: hidden; + overflow-y: hidden; } #app { @@ -118,6 +119,8 @@ 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 9fc907d..00862a1 100644 --- a/src/components/Combat.vue +++ b/src/components/Combat.vue @@ -1,11 +1,11 @@