fix text break on artist card

This commit is contained in:
geoffrey45
2022-08-26 20:26:04 +03:00
parent 824dcaecdf
commit 98e1e28a4b
2 changed files with 1 additions and 7 deletions
-6
View File
@@ -9,12 +9,6 @@
transition: transform 0.3s ease-in-out;
}
.ellipsis {
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
}
.ellip {
display: -webkit-box;
-webkit-line-clamp: 1;
+1 -1
View File
@@ -6,7 +6,7 @@
loading="lazy"
/>
<div>
<p class="artist-name t-center ellipsis">{{ artist.name }}</p>
<p class="artist-name t-center">{{ artist.name }}</p>
</div>
</div>
</template>