소스 검색

fix: Song items visible beneath add song to queue button

Owen Diffey 2 년 전
부모
커밋
faeeecee87
1개의 변경된 파일5개의 추가작업 그리고 6개의 파일을 삭제
  1. 5 6
      frontend/src/components/Queue.vue

+ 5 - 6
frontend/src/components/Queue.vue

@@ -263,19 +263,18 @@ defineEmits(["onChangeTab"]);
 		}
 
 		> .scrollable-list:last-of-type:not(:last-child) {
-			height: 100%;
-			padding-bottom: 50px;
+			height: calc(100% - 56px);
 		}
 
 		.button.floating {
 			position: sticky;
 			z-index: 10;
 
-			bottom: 8px;
-			right: 8px;
-			left: 8px;
+			bottom: 10px;
+			right: 10px;
+			left: 10px;
 
-			width: calc(100% - 16px);
+			width: calc(100% - 20px);
 
 			margin-top: 50px;
 		}