add "add to favorite" buttons to artist and album page headers

+ fix album page play buttton
This commit is contained in:
geoffrey45
2022-12-27 18:55:35 +03:00
committed by Mungai Njoroge
parent 4476a8ebe0
commit f7a054d569
9 changed files with 63 additions and 23 deletions
+21
View File
@@ -0,0 +1,21 @@
<template>
<button class="heart-button circular"><HeartSvg /></button>
</template>
<script setup lang="ts">
import HeartSvg from "@/assets/icons/heart.svg";
</script>
<style lang="scss">
.heart-button {
$bg: rgb(247, 149, 149);
background: $bg;
align-items: center;
padding: 0 1rem;
gap: $smaller;
&:hover {
background: $bg;
}
}
</style>