diff --git a/src/components/GameBoard/ListSettings.vue b/src/components/GameBoard/ListSettings.vue index 0453fc86..38a06bcd 100644 --- a/src/components/GameBoard/ListSettings.vue +++ b/src/components/GameBoard/ListSettings.vue @@ -1,10 +1,12 @@ @@ -122,7 +128,15 @@ export default { computed: { ...mapState(['user', 'activeListIndex', 'gameLists', 'platform']), - ...mapGetters(['activeList']), + ...mapGetters(['activeList', 'darkModeEnabled']), + + isFirst() { + return this.activeListIndex === 0; + }, + + isLast() { + return this.activeListIndex === (Object.keys(this.gameLists[this.platform.code]).length - 1); + }, hasMultipleGames() { return this.activeList.games.length > 1; @@ -207,6 +221,6 @@ export default { footer { border-top: 1px solid $color-gray; padding-top: $gp / 2; - margin-top: $gp / 2; + margin-top: $gp; }