Explorar el Código

refactor(Admin/Songs): Fix song thumbnail width and height

Owen Diffey hace 3 años
padre
commit
f87487b941
Se han modificado 1 ficheros con 3 adiciones y 1 borrados
  1. 3 1
      frontend/src/pages/Admin/Songs/index.vue

+ 3 - 1
frontend/src/pages/Admin/Songs/index.vue

@@ -788,8 +788,10 @@ export default {
 <style lang="less" scoped>
 .song-thumbnail {
 	display: block;
-	max-width: 50px;
+	width: 50px;
+	height: 50px;
 	margin: 0 auto;
+	object-fit: contain;
 }
 
 :deep(.bulk-popup .bulk-actions) {