Browse Source

Fixed song item info being cropped too short

Owen Diffey 3 years ago
parent
commit
3ea8f198af
1 changed files with 2 additions and 2 deletions
  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>