Skip to content

Commit 1ce7bce

Browse files
committed
Add extra spacing after song length
1 parent 1ca4d6e commit 1ce7bce

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

resources/js/components/Upcoming.vue

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
<template v-else>Fallback Track</template>
1919
</div>
2020
</div>
21-
<div class="col-auto text-secondary">{{ formatMs(song.length) }}</div>
21+
<div class="col-auto text-secondary song-length">{{ formatMs(song.length) }}</div>
2222
<div class="col-auto text-center">
2323
<div class="row">
2424
<template v-if="can_downvote == 1">
@@ -81,7 +81,6 @@
8181
</div>
8282
</template>
8383
<style>
84-
8584
.list-move,
8685
.list-enter-active,
8786
.list-leave-active {
@@ -93,9 +92,14 @@
9392
opacity: 0;
9493
transform: translateX(30px);
9594
}
95+
9696
.list-leave-active {
9797
position: absolute;
9898
}
99+
100+
.song-length {
101+
padding-right: 1rem;
102+
}
99103
</style>
100104
<script>
101105
import { VueEternalLoading } from '@ts-pro/vue-eternal-loading';

0 commit comments

Comments
 (0)