add word-break: break-all to .ellip

This commit is contained in:
geoffrey45
2022-08-20 14:43:30 +03:00
parent 0e02347381
commit ddeec77ccd
5 changed files with 7 additions and 12 deletions
+1
View File
@@ -21,6 +21,7 @@
-webkit-box-orient: vertical;
overflow: hidden;
text-overflow: ellipsis;
word-break: break-all;
}
.rounded {
+2 -2
View File
@@ -40,8 +40,8 @@
/>
</div>
</div>
<div class="bigimg">
<img class="rounded" :src="imguri.thumb + album.image" alt="" />
<div class="bigimg ">
<img class="rounded shadow-lg" :src="imguri.thumb + album.image" alt="" />
</div>
</div>
</template>
@@ -91,7 +91,6 @@ const props = defineProps<{
.title {
font-weight: 900;
word-break: break-all;
}
.artists {
+4 -4
View File
@@ -140,7 +140,6 @@ function showMenu(e: Event) {
}
.song-album {
word-break: break-all;
max-width: max-content;
cursor: pointer;
@@ -150,8 +149,6 @@ function showMenu(e: Event) {
}
.song-artists {
word-break: break-all;
.artist {
cursor: pointer;
}
@@ -167,6 +164,10 @@ function showMenu(e: Event) {
.song-duration {
font-size: 0.9rem;
text-align: left;
.ellip {
word-break: keep-all !important;
}
}
.options-icon {
@@ -220,7 +221,6 @@ function showMenu(e: Event) {
.title {
cursor: pointer;
word-break: break-all;
}
}
-5
View File
@@ -137,12 +137,7 @@ const playThis = (track: Track) => {
height: 3rem;
}
.title {
word-break: break-all;
}
.artist {
word-break: break-all;
font-size: small;
color: rgba(255, 255, 255, 0.637);
}