Browse Source

Set overflow for song list items

Thomas Dy 7 năm trước cách đây
mục cha
commit
232f7b0097
1 tập tin đã thay đổi với 8 bổ sung1 xóa
  1. 8 1
      dist/style.css

+ 8 - 1
dist/style.css

@@ -263,13 +263,20 @@
   height: 40px;
   display: grid;
   grid-template-columns: 40px auto;
-  grid-template-rows: 12px 28px;
+  grid-template-rows: 16px 24px;
   grid-template-areas:
     "diff creator"
     "diff title";
   transition: margin-left 0.2s;
 }
 
+.song-item div {
+  white-space: nowrap;
+  overflow: hidden;
+  text-overflow: ellipsis;
+  line-height: 1;
+}
+
 .song-item .difficulty {
   grid-area: diff;
   align-self: end;