Browse Source

fix: stuff

Sv443 8 months ago
parent
commit
22e7512f4d
2 changed files with 2 additions and 5 deletions
  1. 1 4
      assets/style/fixHDR.css
  2. 1 1
      src/features/layout.ts

+ 1 - 4
assets/style/fixHDR.css

@@ -1,8 +1,5 @@
 #side-panel ytmusic-player-queue-item[play-button-state="loading"],
 #side-panel ytmusic-player-queue-item[play-button-state="playing"],
 #side-panel ytmusic-player-queue-item[play-button-state="paused"] {
-  background-color: var(
-    --bytm-themesong-bg-accent-col,
-    rgba(255, 255, 255, 0.1)
-  );
+  background-color: var(--bytm-themesong-bg-accent-col, #1d1d1d) !important;
 }

+ 1 - 1
src/features/layout.ts

@@ -380,7 +380,7 @@ export async function initAboveQueueBtns() {
 
         activeItem.scrollIntoView({
           behavior: evt.shiftKey ? "instant" : "smooth",
-          block: evt.ctrlKey || evt.altKey ? "end" : "center",
+          block: evt.ctrlKey || evt.altKey ? "start" : "center",
           inline: "center",
         });
       },