🐛 Hotfix: History entries refusing to add

This commit is contained in:
Liyas Thomas
2020-03-09 18:45:43 +05:30
parent 84458fb660
commit 292343660c
5 changed files with 7 additions and 7 deletions

View File

@@ -3,8 +3,8 @@
v-if="fb.currentFeeds.length !== 0"
class="virtual-list"
:class="{ filled: fb.currentFeeds.length }"
:size="90"
:remain="Math.min(5, fb.currentFeeds.length)"
:size="180"
:remain="Math.min(6, fb.currentFeeds.length)"
>
<ul v-for="feed in fb.currentFeeds" :key="feed.id" class="entry">
<div class="show-on-large-screen">
@@ -33,7 +33,7 @@
<style scoped lang="scss">
.virtual-list {
max-height: calc(100vh - 288px);
max-height: calc(100vh - 294px);
}
ul,