소스 검색

Fixed song item info being cropped too short

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

+ 2 - 2
frontend/src/components/SongItem.vue

@@ -298,7 +298,7 @@ export default {
 		flex-direction: column;
 		justify-content: center;
 		margin-left: 20px;
-		width: calc(100% - 80px);
+		width: calc(100% - 10px);
 
 		*:not(i) {
 			margin: 0;
@@ -335,7 +335,7 @@ export default {
 	}
 
 	&.with-duration .song-info {
-		width: calc(100% - 150px);
+		width: calc(100% - 80px);
 	}
 }
 </style>