refactor colors

This commit is contained in:
geoffrey45
2022-03-15 10:38:53 +03:00
parent 33a9aa2c30
commit f11005e523
22 changed files with 157 additions and 128 deletions
+2 -3
View File
@@ -36,14 +36,13 @@ export default {
<style lang="scss">
.right-search .albums-results {
border-radius: 0.5rem;
background: #0f131b44;
margin-top: $small;
padding: $small;
overflow-x: hidden;
border: solid 1px $gray;
border: solid 1px $gray3;
.result-item:hover {
background-color: $gray3;
background-color: $gray4;
}
.grid {
+3 -9
View File
@@ -38,22 +38,16 @@ export default {
border-radius: 0.5rem;
padding: $small;
margin-bottom: $small;
border: solid 1px $gray;
background-color: #150d167c;
border: solid 1px $gray3;
.xartist {
background: linear-gradient(
to bottom,
$gray2 20%,
$gray4 50%,
$gray 80%
);
background-color: $gray;
}
.grid {
display: grid;
grid-template-columns: repeat(3, 1fr);
gap: .75rem;
gap: 0.75rem;
}
}
</style>
+3 -2
View File
@@ -29,11 +29,12 @@ export default {
<style lang="scss">
.gsearch-input .filter {
display: flex;
// height: 2rem;
// border: solid;
.item {
transition: all 0.2s ease-in-out;
background-color: $gray3;
height: 2.5rem;
&:hover {
width: 4rem;
+3 -3
View File
@@ -33,11 +33,11 @@ export default {
display: grid;
transition: all 0.5s ease;
color: rgba(255, 255, 255, 0.87) !important;
background-color: transparent;
border: solid 1px $gray;
background-color: $accent;
// border: solid 1px $gray;
&:hover {
background-color: $gray !important;
background-color: $blue !important;
width: 50%;
}
}
+4 -1
View File
@@ -48,6 +48,8 @@ const options = [
.right-search .options {
display: flex;
margin-bottom: $small;
border: solid 1px $gray3;
// background: $gray3;
.item {
margin: $small;
@@ -58,7 +60,7 @@ const options = [
overflow: hidden;
transition: all 0.2s ease-in-out;
position: relative;
background-color: $gray4;
background-color: $gray3;
.title {
position: absolute;
@@ -75,6 +77,7 @@ const options = [
&:hover {
width: 5.5rem;
background-color: $gray5;
.title {
visibility: visible;
+2 -1
View File
@@ -45,6 +45,7 @@ function loadMore() {
.right-search .tracks-results {
border-radius: 0.5rem;
padding: $small;
border: 1px solid $gray;
border: 1px solid $gray3;
// background: ;
}
</style>