add featured artists in playlist view

This commit is contained in:
geoffrey45
2021-12-08 16:39:26 +03:00
parent 1c5ae836ea
commit e1e0df44c4
6 changed files with 153 additions and 6 deletions
+13 -2
View File
@@ -2,17 +2,22 @@
<Header />
<div class="p-bg rounded">
<SongList />
<div class="f-artists-p">
<FeaturedArtists />
</div>
</div>
</template>
<script>
import Header from "@/components/PlaylistView/Header.vue";
import SongList from "@/components/FolderView/SongList.vue";
import FeaturedArtists from "@/components/PlaylistView/FeaturedArtists.vue";
export default {
components: {
Header,
SongList,
FeaturedArtists,
},
setup() {
return {};
@@ -22,9 +27,15 @@ export default {
<style lang="scss">
.p-bg {
position: relative;
background: $card-dark;
padding: 20px;
height: calc(100% - 16em);
padding: 0;
padding: $small;
}
.p-bg .f-artists {
position: absolute;
bottom: 0;
margin-top: 1em;
}
</style>