Fix text overflow, Closes #345

This commit is contained in:
arabcoders 2025-07-20 17:02:01 +03:00
parent 472b8cb468
commit ac2056f038
2 changed files with 6 additions and 1 deletions

View file

@ -340,3 +340,8 @@ hr {
.Vue-Toastification__toast-body {
user-select: none;
}
.is-word-break {
word-break: break-word;
text-wrap: auto;
}

View file

@ -889,7 +889,7 @@ const downloadSelected = async () => {
}
}
const toggle_class = e => e.currentTarget.classList.toggle('is-text-overflow')
const toggle_class = e => ['is-text-overflow', 'is-word-break'].forEach(c => e.currentTarget.classList.toggle(c))
const removeFromArchiveDialog = (item) => {
dialog_confirm.value.visible = true