1
0
mirror of https://github.com/amir20/dozzle.git synced 2025-12-21 21:33:18 +01:00

fix: fixes scroll progress showing temporary (#2355)

This commit is contained in:
Amir Raminfar
2023-08-18 12:48:17 -07:00
committed by GitHub
parent 7f1303ed4d
commit 54610b0f5a
2 changed files with 3 additions and 3 deletions

View File

@@ -5,7 +5,7 @@
</header>
<main :data-scrolling="scrollable ? true : undefined">
<div class="is-scrollbar-progress is-hidden-mobile">
<scroll-progress v-show="paused" :indeterminate="loading" :auto-hide="!loading"></scroll-progress>
<scroll-progress v-if="paused" :indeterminate="loading" :auto-hide="!loading"></scroll-progress>
</div>
<div ref="scrollableContent">
<slot :setLoading="setLoading"></slot>