Skip to content

Commit 488ebc7

Browse files
authored
fix(VCarousel): avoid missing progress bar (#21586)
1 parent 010ded6 commit 488ebc7

File tree

2 files changed

+1
-1
lines changed

2 files changed

+1
-1
lines changed

packages/vuetify/src/components/VCarousel/VCarousel.sass

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@
4343
// Element
4444
.v-carousel__progress
4545
margin: 0
46-
position: absolute
4746
bottom: 0
4847
left: 0
4948
right: 0

packages/vuetify/src/components/VCarousel/VCarousel.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -172,6 +172,7 @@ export const VCarousel = genericComponent<new <T>(
172172

173173
{ props.progress && (
174174
<VProgressLinear
175+
absolute
175176
class="v-carousel__progress"
176177
color={ typeof props.progress === 'string' ? props.progress : undefined }
177178
modelValue={ (group.getItemIndex(model.value) + 1) / group.items.value.length * 100 }

0 commit comments

Comments
 (0)