mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
add album explorer
This commit is contained in:
@@ -0,0 +1,24 @@
|
||||
<template>
|
||||
<div class="a-container">
|
||||
<TopAlbums />
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script>
|
||||
import TopAlbums from "../components/AlbumsExplorer/TopAlbums.vue";
|
||||
|
||||
export default {
|
||||
components: {
|
||||
TopAlbums,
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
<style lang="scss">
|
||||
.a-container {
|
||||
height: 100%;
|
||||
border-radius: $small;
|
||||
background-color: $card-dark;
|
||||
padding: $small;
|
||||
}
|
||||
</style>
|
||||
@@ -29,13 +29,13 @@ export default {
|
||||
};
|
||||
</script>
|
||||
|
||||
<style>
|
||||
<style lang="scss">
|
||||
#f-view-parent {
|
||||
position: relative;
|
||||
height: 100%;
|
||||
background-color: #131313b2;
|
||||
padding-left: 1rem;
|
||||
padding-right: 1rem;
|
||||
padding-left: $small;
|
||||
padding-right: $small;
|
||||
padding-top: 5rem;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user