some UI refactors

This commit is contained in:
geoffrey45
2022-05-10 13:20:22 +03:00
parent b13dad4c34
commit 301f07bda5
14 changed files with 36 additions and 25 deletions
+1 -2
View File
@@ -1,5 +1,5 @@
<template>
<div class="albums-results">
<div class="albums-results border">
<div class="heading">Albums</div>
<div class="grid">
<AlbumCard v-for="album in albums" :key="album" :album="album" />
@@ -39,7 +39,6 @@ export default {
margin-top: $small;
padding: $small;
overflow-x: hidden;
border: solid 1px $gray3;
.result-item:hover {
background-color: $gray4;
+1 -2
View File
@@ -1,5 +1,5 @@
<template>
<div class="artists-results">
<div class="artists-results border">
<div class="heading">Artists</div>
<div class="grid">
<ArtistCard v-for="artist in artists" :key="artist" :artist="artist" />
@@ -38,7 +38,6 @@ export default {
border-radius: 0.5rem;
padding: $small;
margin-bottom: $small;
border: solid 1px $gray3;
.xartist {
background-color: $gray;
-2
View File
@@ -48,8 +48,6 @@ const options = [
.right-search .options {
display: flex;
margin-bottom: $small;
border: solid 1px $gray3;
// background: $gray3;
.item {
margin: $small;
+1 -2
View File
@@ -1,5 +1,5 @@
<template>
<div class="tracks-results" v-if="tracks">
<div class="tracks-results border" v-if="tracks">
<div class="heading">Tracks</div>
<TransitionGroup class="items" name="list">
<TrackItem
@@ -49,7 +49,6 @@ function updateQueue(track: Track) {
.right-search .tracks-results {
border-radius: 0.5rem;
padding: $small;
border: 1px solid $gray3;
.list-enter-active,
.list-leave-active {