Procházet zdrojové kódy

Set overflow for song list items

Thomas Dy před 7 roky
rodič
revize
232f7b0097
1 změnil soubory, kde provedl 8 přidání a 1 odebrání
  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;