diff --git a/src/assets/scss/Global/basic.scss b/src/assets/scss/Global/basic.scss index 50b5846..3fd7947 100644 --- a/src/assets/scss/Global/basic.scss +++ b/src/assets/scss/Global/basic.scss @@ -65,12 +65,12 @@ button { background: linear-gradient(70deg, $gray3, $gray2); &:hover { - background-image: linear-gradient(70deg, #234ece, $darkblue); + background-image: linear-gradient(70deg, $darkestblue, $darkblue); } } .btn-active { - background-image: linear-gradient(70deg, #234ece, $darkblue); + background-image: linear-gradient(70deg, $darkestblue, $darkblue); } .btn-more { diff --git a/src/assets/scss/_variables.scss b/src/assets/scss/_variables.scss index 8e9e342..2103cd1 100644 --- a/src/assets/scss/_variables.scss +++ b/src/assets/scss/_variables.scss @@ -3,6 +3,7 @@ $body: #0f1218; $separator: #ffffff2f; $highlight-blue: #006eff; +$darkestblue: #234ece; $bbb: #161616; //bottom controls background $theme: #464545fd; @@ -41,7 +42,6 @@ $teal: rgb(64, 200, 224); $primary: $gray4; $accent: $gray1; $secondary: $gray5; -$cta: $blue; $danger: $red; $track-hover: $gray4; $context: $gray; diff --git a/src/components/Contextmenu/ContextItem.vue b/src/components/Contextmenu/ContextItem.vue index 8056e2c..214e9f8 100644 --- a/src/components/Contextmenu/ContextItem.vue +++ b/src/components/Contextmenu/ContextItem.vue @@ -66,7 +66,7 @@ defineProps<{ } &:hover { - background: #234ece; + background: $darkestblue; .children { transform: scale(1); diff --git a/src/components/LeftSidebar/NP/HotKeys.vue b/src/components/LeftSidebar/NP/HotKeys.vue index e5a94c2..0878a8a 100644 --- a/src/components/LeftSidebar/NP/HotKeys.vue +++ b/src/components/LeftSidebar/NP/HotKeys.vue @@ -37,7 +37,7 @@ const q = useQStore(); cursor: pointer; &:hover { - background-color: $accent; + background-color: $darkestblue; } } diff --git a/src/components/PlaylistsList/PlaylistCard.vue b/src/components/PlaylistsList/PlaylistCard.vue index 0dd46c4..f388ce3 100644 --- a/src/components/PlaylistsList/PlaylistCard.vue +++ b/src/components/PlaylistsList/PlaylistCard.vue @@ -4,12 +4,7 @@ :playlist="props.playlist" class="p-card rounded bg-primary" > -
+
{{ props.playlist.name }}
@@ -41,47 +36,20 @@ const props = defineProps<{ transition: all 0.25s ease; position: relative; - .p-image { - min-width: 100%; - transition: all 0.2s ease; - background-color: $gray4; + img { + width: 100%; aspect-ratio: 1; - } - - .drop { - position: absolute; - bottom: 4rem; - right: 1.25rem; - opacity: 0; - transition: all 0.25s ease-in-out; - display: none; - - .drop-btn { - background-color: $gray3; - } - } - - .pbtn { - display: none; - position: absolute; - bottom: 4.5rem; - left: 1.25rem; - transition: all 0.25s ease-in-out; - z-index: 10; + object-fit: cover; } &:hover { - background-color: $gray2; - - .drop { - transition-delay: 0.75s; - opacity: 1; - transform: translate(0, -0.5rem); - } + background-color: $darkestblue; } .bottom { - margin-top: 1rem; + margin-top: $smaller; + display: grid; + justify-items: center; .name { font-weight: 900; @@ -89,7 +57,7 @@ const props = defineProps<{ .count { font-size: $medium; - color: $gray1; + opacity: .5; } } } diff --git a/src/components/RightSideBar/Main.vue b/src/components/RightSideBar/Main.vue index 01d5340..8f39033 100644 --- a/src/components/RightSideBar/Main.vue +++ b/src/components/RightSideBar/Main.vue @@ -1,6 +1,6 @@