fancy progress bar, brrr

This commit is contained in:
booploops 2021-12-04 16:19:14 -08:00
parent c70d769fe1
commit 583afcf9d5
2 changed files with 5 additions and 2 deletions

View file

@ -193,8 +193,9 @@
</button>
</div>
<div class="app-sidebar-notification" v-if="library.songs.downloadState == 1">
Updating your library...<br>
{{ library.songs.meta.progress }} / {{ library.songs.meta.total }}
<div>Updating your library...</div>
<div>{{ library.songs.meta.progress }} / {{ library.songs.meta.total }}</div>
<div style="width: 100%"><progress style="width: 80%;" :value="library.songs.meta.progress" :max="library.songs.meta.total"></progress></div>
</div>
</div>
<div id="app-content">

View file

@ -326,6 +326,8 @@ input[type=range].web-slider::-webkit-slider-runnable-track {
align-items: center;
border-top: 1px solid rgb(200 200 200 / 15%);
background: rgb(0 0 0 / 15%);
flex-direction: column;
padding: 20px 0px;
}
.app-sidebar-content {