diff --git a/client/public/libs/style.css b/client/public/libs/style.css index b81fe0f..5eb19d0 100644 --- a/client/public/libs/style.css +++ b/client/public/libs/style.css @@ -60,4 +60,7 @@ direction: ltr; -webkit-font-feature-settings: 'liga'; -webkit-font-smoothing: antialiased; +} +body{ + background: url('/img/bg1.png') center center fixed repeat; } \ No newline at end of file diff --git a/client/src/components/spells/spells-list.vue b/client/src/components/spells/spells-list.vue index 981a2c3..cbdb88b 100644 --- a/client/src/components/spells/spells-list.vue +++ b/client/src/components/spells/spells-list.vue @@ -38,7 +38,7 @@ export default { this.loading = true const displaySpells = await this.fetchSpells(); this.loading = false - this.spells = displaySpells + this.spells = displaySpells.slice(0,10) } } } diff --git a/client/src/pages/index-page.vue b/client/src/pages/index-page.vue index 6d87887..fdb289f 100644 --- a/client/src/pages/index-page.vue +++ b/client/src/pages/index-page.vue @@ -2,10 +2,10 @@