This commit is contained in:
geoffrey45
2021-12-27 23:52:28 +03:00
parent 01f31f4dc6
commit 49947a22b2
2 changed files with 8 additions and 8 deletions
+3 -2
View File
@@ -47,7 +47,7 @@ export default {
position: absolute;
z-index: -1;
left: 0;
backdrop-filter: blur(20px);
backdrop-filter: blur(40px);
}
.a-header {
@@ -57,7 +57,7 @@ export default {
background: -webkit-linear-gradient(to right, #414345, #232526);
background: linear-gradient(to right, #050107, #00090e);
backdrop-filter: blur(0px);
backdrop-filter: blur(40px);
overflow: hidden;
display: flex;
@@ -72,6 +72,7 @@ export default {
background-color: rgb(24, 24, 24);
border-radius: 1rem;
right: 1rem;
bottom: 1rem;
width: 25rem;
height: 5rem;
+5 -6
View File
@@ -14,10 +14,13 @@
<tr
v-for="song in songs"
:key="song"
: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
class="album-art rounded image"
:style="{
@@ -181,10 +184,6 @@ th {
font-weight: normal;
}
.folder {
padding-bottom: 1rem;
}
td .artist {
font-weight: lighter;
margin-right: 0.5rem;