mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 12:33:03 +00:00
refactor UI layout
This commit is contained in:
@@ -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>
|
||||
@@ -207,7 +207,7 @@ export default {
|
||||
.song-album {
|
||||
.album {
|
||||
cursor: pointer;
|
||||
width: max-content;
|
||||
max-width: max-content;
|
||||
}
|
||||
|
||||
@include tablet-portrait {
|
||||
|
||||
Reference in New Issue
Block a user