diff --git a/src/components/cards/CardItem.vue b/src/components/cards/CardItem.vue index f2aaabacc..c88e25841 100644 --- a/src/components/cards/CardItem.vue +++ b/src/components/cards/CardItem.vue @@ -134,7 +134,7 @@ export default { watch: { currentCard(newValue) { if (newValue) { - this.$nextTick(() => this.$el.scrollIntoView()) + this.$nextTick(() => this.$el.scrollIntoView({ behavior: 'smooth', block: 'center', inline: 'center' })) } }, },