diff --git a/src/assets/css/Search/Search.scss b/src/assets/css/Search/Search.scss index c12ab114..e3e97dd4 100644 --- a/src/assets/css/Search/Search.scss +++ b/src/assets/css/Search/Search.scss @@ -1,6 +1,5 @@ .right-search { position: relative; - border-radius: $small; background-color: #03000eab; display: grid; grid-template-rows: min-content 1fr; diff --git a/src/assets/css/global.scss b/src/assets/css/global.scss index f77525eb..7faa75d3 100644 --- a/src/assets/css/global.scss +++ b/src/assets/css/global.scss @@ -16,6 +16,7 @@ body { font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol"; font-size: 1rem; + overflow: hidden; } .heading { @@ -39,7 +40,7 @@ a { } .border { - border: solid 1px rgba(39, 38, 38, 0.329); + border: solid 1px #27262654; } .separator { @@ -88,9 +89,6 @@ button { "bottom-bar bottom-bar bottom-bar"; width: 100vw; height: 100vh; - background-repeat: no-repeat; - background-size: cover; - background-position: center; background: rgba(0, 0, 0, 0.575); } @@ -133,8 +131,9 @@ button { .content { grid-area: content; - border-radius: 0.25rem; overflow: hidden; + padding: 0; + border-left: solid 1px #27262654; } .r-sidebar { diff --git a/src/components/AlbumsExplorer/AlbumList.vue b/src/components/AlbumsExplorer/AlbumList.vue index ac58b1d1..040619a0 100644 --- a/src/components/AlbumsExplorer/AlbumList.vue +++ b/src/components/AlbumsExplorer/AlbumList.vue @@ -153,7 +153,7 @@ export default { } &:hover { - background-color: rgb(87, 74, 74); + background-color: #574a4a; .play { transition: 0.5s all ease; diff --git a/src/components/FolderView/FolderList.vue b/src/components/FolderView/FolderList.vue index bea1d610..51a97fc7 100644 --- a/src/components/FolderView/FolderList.vue +++ b/src/components/FolderView/FolderList.vue @@ -24,6 +24,7 @@ const props = defineProps({ diff --git a/src/components/RightSideBar/Main.vue b/src/components/RightSideBar/Main.vue index 15c70f39..c00fd9d6 100644 --- a/src/components/RightSideBar/Main.vue +++ b/src/components/RightSideBar/Main.vue @@ -13,7 +13,7 @@ -
+
@@ -26,6 +26,7 @@ import Search from "../Search.vue"; import UpNext from "./Queue.vue"; import Tabs from "./Tabs.vue"; import Main from "./Home/Main.vue"; +import perks from "../../composables/perks"; const DashBoard = Main; @@ -40,22 +41,29 @@ const default_tab = tabs.home; const current_tab = ref(default_tab); function changeTab(tab) { - current_tab.value = tab; + new Promise((resolve) => { + current_tab.value = tab; + resolve(); + setTimeout(() => {}, 300); + }).then(() => { + if (tab === tabs.queue) { + perks.focusCurrent(); + } + }); } diff --git a/src/components/shared/SongItem.vue b/src/components/shared/SongItem.vue index c4123026..6130f741 100644 --- a/src/components/shared/SongItem.vue +++ b/src/components/shared/SongItem.vue @@ -150,7 +150,7 @@ export default { } & { & td { - background-color: rgb(5, 80, 150); + background-color: #3131313b; } td:first-child { diff --git a/src/components/shared/TrackItem.vue b/src/components/shared/TrackItem.vue index 81ec4871..6acdfabd 100644 --- a/src/components/shared/TrackItem.vue +++ b/src/components/shared/TrackItem.vue @@ -66,7 +66,6 @@ const playThis = (song) => { &:hover { cursor: pointer; - background-color: $blue; } hr { diff --git a/src/views/FolderView.vue b/src/views/FolderView.vue index edee3aab..67cae804 100644 --- a/src/views/FolderView.vue +++ b/src/views/FolderView.vue @@ -131,7 +131,7 @@ export default { background-color: $card-dark; padding: 4rem $small 0 $small; overflow: hidden; - margin: $small 0 $small 0; + margin: $smaller; } #f-view-parent .fixed { diff --git a/src/views/PlaylistView.vue b/src/views/PlaylistView.vue index a2f8a365..c93e36cc 100644 --- a/src/views/PlaylistView.vue +++ b/src/views/PlaylistView.vue @@ -1,5 +1,5 @@