mirror of
https://github.com/Dvorinka/swingmusic-extended.git
synced 2026-06-04 20:43:04 +00:00
some UI refactors
This commit is contained in:
@@ -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,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;
|
||||
|
||||
@@ -48,8 +48,6 @@ const options = [
|
||||
.right-search .options {
|
||||
display: flex;
|
||||
margin-bottom: $small;
|
||||
border: solid 1px $gray3;
|
||||
// background: $gray3;
|
||||
|
||||
.item {
|
||||
margin: $small;
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user