Skip to content

Commit

Permalink
⚒ Fix progress width size
Browse files Browse the repository at this point in the history
  • Loading branch information
yassinrais committed Jan 21, 2022
1 parent 24e573c commit 466070f
Showing 1 changed file with 10 additions and 7 deletions.
17 changes: 10 additions & 7 deletions src/common/components/UploadFile.vue
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
</g>
</svg>
</button>
<div class="progress" v-if="isUploading">
<div class="progress" v-if="true || isUploading">
<k-progress
class="k"
active
Expand Down Expand Up @@ -129,12 +129,6 @@ export default {
.progress {
@apply m-auto my-8 w-7/12 block;
.k-progress-outer {
padding: 0 !important;
margin: 0 !important;
width: 100%;
}
.text {
@apply mx-auto mt-3 w-max;
}
Expand All @@ -144,4 +138,13 @@ export default {
@apply text-sm text-center w-8/12 mb-10 mt-auto mx-auto;
}
}
</style>


<style >
.k-progress-outer {
padding: 0 !important;
margin: 0 !important;
width: 100%;
}
</style>

0 comments on commit 466070f

Please sign in to comment.