mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-03 20:13:02 +00:00
minor
This commit is contained in:
@@ -47,7 +47,7 @@ export default {
|
|||||||
position: absolute;
|
position: absolute;
|
||||||
z-index: -1;
|
z-index: -1;
|
||||||
left: 0;
|
left: 0;
|
||||||
backdrop-filter: blur(20px);
|
backdrop-filter: blur(40px);
|
||||||
}
|
}
|
||||||
|
|
||||||
.a-header {
|
.a-header {
|
||||||
@@ -57,7 +57,7 @@ export default {
|
|||||||
background: -webkit-linear-gradient(to right, #414345, #232526);
|
background: -webkit-linear-gradient(to right, #414345, #232526);
|
||||||
background: linear-gradient(to right, #050107, #00090e);
|
background: linear-gradient(to right, #050107, #00090e);
|
||||||
|
|
||||||
backdrop-filter: blur(0px);
|
backdrop-filter: blur(40px);
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
|
|
||||||
display: flex;
|
display: flex;
|
||||||
@@ -72,6 +72,7 @@ export default {
|
|||||||
background-color: rgb(24, 24, 24);
|
background-color: rgb(24, 24, 24);
|
||||||
border-radius: 1rem;
|
border-radius: 1rem;
|
||||||
right: 1rem;
|
right: 1rem;
|
||||||
|
bottom: 1rem;
|
||||||
width: 25rem;
|
width: 25rem;
|
||||||
height: 5rem;
|
height: 5rem;
|
||||||
|
|
||||||
|
|||||||
@@ -14,10 +14,13 @@
|
|||||||
<tr
|
<tr
|
||||||
v-for="song in songs"
|
v-for="song in songs"
|
||||||
:key="song"
|
:key="song"
|
||||||
|
|
||||||
:class="{ current: current._id.$oid == song._id.$oid }"
|
:class="{ current: current._id.$oid == song._id.$oid }"
|
||||||
>
|
>
|
||||||
<td :style="{ width: songTitleWidth + 'px' }" class="flex" @click="updateQueue(song), playAudio(song.filepath)">
|
<td
|
||||||
|
:style="{ width: songTitleWidth + 'px' }"
|
||||||
|
class="flex"
|
||||||
|
@click="updateQueue(song), playAudio(song.filepath)"
|
||||||
|
>
|
||||||
<div
|
<div
|
||||||
class="album-art rounded image"
|
class="album-art rounded image"
|
||||||
:style="{
|
:style="{
|
||||||
@@ -181,10 +184,6 @@ th {
|
|||||||
font-weight: normal;
|
font-weight: normal;
|
||||||
}
|
}
|
||||||
|
|
||||||
.folder {
|
|
||||||
padding-bottom: 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
td .artist {
|
td .artist {
|
||||||
font-weight: lighter;
|
font-weight: lighter;
|
||||||
margin-right: 0.5rem;
|
margin-right: 0.5rem;
|
||||||
|
|||||||
Reference in New Issue
Block a user