Parcourir la source

fix: SongItem/SearchQueryItem buttons were sometimes overflowing

Kristian Vos il y a 3 ans
Parent
commit
d97b05ec51

+ 1 - 1
frontend/src/components/modals/EditSong/Tabs/Youtube.vue

@@ -97,7 +97,7 @@ export default {
 
 		.search-query-item {
 			/deep/ .thumbnail-and-info {
-				width: calc(100% - 29px);
+				width: calc(100% - 59px);
 			}
 
 			.icon-selected {

+ 16 - 0
frontend/src/components/modals/ManageStation/Tabs/Songs.vue

@@ -455,5 +455,21 @@ export default {
 			margin: 0;
 		}
 	}
+
+	.musare-songs {
+		.song-item {
+			/deep/ .thumbnail-and-info {
+				width: calc(100% - 116px);
+			}
+		}
+	}
+
+	.youtube-songs {
+		.song-item {
+			/deep/ .thumbnail-and-info {
+				width: calc(100% - 57px);
+			}
+		}
+	}
 }
 </style>