add album explorer

This commit is contained in:
geoffrey45
2021-12-10 18:34:34 +03:00
parent 0fa55eeeae
commit aed2c74975
8 changed files with 248 additions and 68 deletions
+24
View File
@@ -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>
+3 -3
View File
@@ -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;
}