mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
add featured artists in playlist view
This commit is contained in:
@@ -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>
|
||||
Reference in New Issue
Block a user