minor refactors

This commit is contained in:
geoffrey45
2022-02-19 22:12:10 +03:00
parent a6bb5059b0
commit 92c2443c7c
20 changed files with 121 additions and 104 deletions
+2 -5
View File
@@ -1,20 +1,17 @@
<template>
<div class="r-home">
<NowPlaying />
<Recommendations />
</div>
</template>
<style lang="scss">
.r-home {
height: 100%;
width: 31rem;
height: calc(100% - 1rem);
background-color: $card-dark;
padding: $smaller $small;
padding: 0 $small $small 0;
}
</style>
<script setup>
import NowPlaying from '../NowPlaying.vue';
import Recommendations from '../Recommendation.vue';
</script>