refactor UI layout

This commit is contained in:
geoffrey45
2022-03-06 10:27:01 +03:00
parent 90f8703a8e
commit 7f2102f931
21 changed files with 214 additions and 164 deletions
+23
View File
@@ -0,0 +1,23 @@
<template>
<div class="play-btn circular">
<div class="icon"></div>
</div>
</template>
<style lang="scss">
.play-btn {
width: 2rem;
height: 2rem;
background-color: $red;
background-image: url("../../assets/icons/play.svg");
background-size: 1.25rem;
background-position: 60%;
background-repeat: no-repeat;
transition: all .25s;
&:hover {
background-color: rgb(58, 197, 58);
transform: scale(1.1);
}
}
</style>
+1 -1
View File
@@ -207,7 +207,7 @@ export default {
.song-album {
.album {
cursor: pointer;
width: max-content;
max-width: max-content;
}
@include tablet-portrait {