color changes in search

This commit is contained in:
geoffrey45
2022-02-22 12:55:16 +03:00
parent 5e48496ccb
commit f141dd7f06
8 changed files with 79 additions and 42 deletions
+4 -3
View File
@@ -31,10 +31,11 @@ export default {
padding: $small;
border-radius: .75rem;
text-align: left !important;
border: solid 2px transparent;
&:hover {
background-color: #1b3688cb;
}
// &:hover {
// background-color: #1b3688cb;
// }
.album-art {
height: 7.5rem;
+3 -5
View File
@@ -1,7 +1,7 @@
<template>
<div class="xartist" :style="{ backgroundColor: `#${color}` }">
<div
class="artist-image image"
class="artist-image image border-sm"
:style="{ backgroundImage: `url('${artist.image}')` }"
></div>
<div>
@@ -30,19 +30,17 @@ export default {
align-items: center;
justify-content: center;
cursor: pointer;
background-color: transparent;
.artist-image {
width: 7em;
height: 7em;
border: solid;
border-radius: 60%;
margin-bottom: $small;
background-size: 7rem 7rem;
background-position: center;
background-repeat: no-repeat;
transition: all 0.5s ease-in-out;
border: solid 1px rgba(5, 5, 5, 0.055);
box-shadow: 0 0 80px rgb(0, 0, 0);
}
&:hover {
@@ -61,4 +59,4 @@ export default {
max-width: 7rem;
}
}
</style>
</style>