mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-05 04:53:01 +00:00
minor refactors
This commit is contained in:
@@ -19,7 +19,6 @@
|
|||||||
.art {
|
.art {
|
||||||
width: 3rem;
|
width: 3rem;
|
||||||
height: 3rem;
|
height: 3rem;
|
||||||
border-radius: $smaller;
|
|
||||||
background-image: url("../../images/null.webp");
|
background-image: url("../../images/null.webp");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -15,7 +15,7 @@
|
|||||||
<div class="separator no-border"></div>
|
<div class="separator no-border"></div>
|
||||||
<div class="bottom">
|
<div class="bottom">
|
||||||
<div class="stats shadow-sm">
|
<div class="stats shadow-sm">
|
||||||
{{ props.album_info.count }} Tracks • {{ props.album_info.duration }} •
|
{{ props.album_info.count }} Tracks • {{ perks.formatSeconds(props.album_info.duration, "long") }} •
|
||||||
{{ props.album_info.date }}
|
{{ props.album_info.date }}
|
||||||
</div>
|
</div>
|
||||||
<div class="play rounded" @click="playAlbum">
|
<div class="play rounded" @click="playAlbum">
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="l_" v-if="!props.collapsed">
|
<div class="l_" v-if="!props.collapsed">
|
||||||
<div
|
<div
|
||||||
class="l-image image rounded"
|
class="l-image image"
|
||||||
:style="{
|
:style="{
|
||||||
backgroundImage: `url("${current.image}")`,
|
backgroundImage: `url("${current.image}")`,
|
||||||
}"
|
}"
|
||||||
@@ -28,7 +28,6 @@ const props = defineProps({
|
|||||||
.l-image {
|
.l-image {
|
||||||
height: 14rem;
|
height: 14rem;
|
||||||
width: 14rem;
|
width: 14rem;
|
||||||
border-radius: .5rem;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
|
|||||||
@@ -119,7 +119,6 @@ export default {
|
|||||||
margin-right: 1rem;
|
margin-right: 1rem;
|
||||||
display: grid;
|
display: grid;
|
||||||
place-items: center;
|
place-items: center;
|
||||||
border-radius: 0.5rem;
|
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@@ -51,7 +51,7 @@ const playThis = (song) => {
|
|||||||
|
|
||||||
<style lang="scss">
|
<style lang="scss">
|
||||||
.currentInQueue {
|
.currentInQueue {
|
||||||
border: solid 2px $pink;
|
background-color: $gray3;
|
||||||
}
|
}
|
||||||
|
|
||||||
.track-item {
|
.track-item {
|
||||||
@@ -82,7 +82,6 @@ const playThis = (song) => {
|
|||||||
width: 3rem;
|
width: 3rem;
|
||||||
height: 3rem;
|
height: 3rem;
|
||||||
margin: 0 0.5rem 0 0;
|
margin: 0 0.5rem 0 0;
|
||||||
border-radius: 0.5rem;
|
|
||||||
background-image: url(../../assets/images/null.webp);
|
background-image: url(../../assets/images/null.webp);
|
||||||
}
|
}
|
||||||
.artist {
|
.artist {
|
||||||
|
|||||||
Reference in New Issue
Block a user