Fix overflow on feed loader

This commit is contained in:
Kylart 2019-08-19 16:31:40 +02:00
parent 6a555bfa20
commit c6f3f43884
1 changed files with 4 additions and 1 deletions

View File

@ -1,5 +1,5 @@
<template lang="pug">
div
.feed-container
transition(name='fade', mode='out-in')
loader(v-if='!instanciate', key='loading')
@ -54,4 +54,7 @@ export default {
.fade-enter-active, .fade-leave
transition all .5s
.feed-container
overflow hidden
</style>