fix: add ellipsis overflow to DM list

This commit is contained in:
Twig 2025-07-18 08:01:45 +02:00
parent 49e8c34254
commit ad7a6b5bb6
No known key found for this signature in database

View file

@ -37,4 +37,10 @@ const props = defineProps<{
width: 2.3em;
height: 2.3em;
}
.user-display-name {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
</style>