perf: Progress component sizing on Desktop (#720)

This commit is contained in:
Rémi Marseault 2023-03-19 16:19:50 +01:00 committed by GitHub
parent 5320bf094b
commit c9914172b5
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 3 additions and 3 deletions

2
package-lock.json generated
View file

@ -6,7 +6,7 @@
"packages": {
"": {
"name": "vuetorrent",
"version": "1.5.0",
"version": "1.5.1",
"dependencies": {
"ajv": "^8.12.0",
"apexcharts": "^3.35.0",

View file

@ -1,9 +1,9 @@
<template>
<v-flex xs12 sm1 md1 class="mr-4">
<v-flex xs12 sm1 md1>
<div class="caption grey--text">
{{ $t('torrent.properties.progress') | titleCase }}
</div>
<v-progress-linear :value="torrent.progress" height="20" :style="phoneLayout ? '' : 'width: 80%;'" :color="`torrent-${state}`" rounded>
<v-progress-linear :value="torrent.progress" height="20" style="width: 90%" :color="`torrent-${state}`" rounded>
<span class="caption white--text"> {{ torrent.progress }}% </span>
</v-progress-linear>
</v-flex>