Skip to content

Commit 35ff75c

Browse files
committed
Remove list style from album and artist view
1 parent 0579cc6 commit 35ff75c

File tree

3 files changed

+7
-2
lines changed

3 files changed

+7
-2
lines changed

src/Root.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,8 @@ a {
3434
.white-space-nowrap {
3535
white-space: nowrap;
3636
}
37+
38+
.list-none {
39+
list-style: none;
40+
}
3741
</style>

src/views/albums/Album.vue

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@
6060
</div>
6161
<div v-if="playlists.length" class="text-grey mt-4 mb-4">
6262
{{ I18n.t("music.album.in-playlists", playlists.length) }}
63-
<ul>
63+
<ul class="list-none">
6464
<li v-for="playlist in playlists" :key="playlist.id">
6565
<RouterLink
6666
:to="{ name: 'playlist', params: { id: playlist.id } }"
@@ -150,3 +150,4 @@ async function fetchContent(): Promise<void> {
150150
}
151151
}
152152
</script>
153+

src/views/artists/Artist.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
</div>
3434
<div v-if="playlists.length" class="text-grey mt-4 mb-4">
3535
{{ I18n.t("music.artist.in-playlists", playlists.length) }}
36-
<ul>
36+
<ul class="list-none">
3737
<li v-for="playlist in playlists" :key="playlist.id">
3838
<RouterLink
3939
:to="{ name: 'playlist', params: { id: playlist.id } }"

0 commit comments

Comments
 (0)