torrust / torrust-index-gui

This repository serves as the frontend for the Torrust Index project.
https://torrust.com
Other
32 stars 16 forks source link

Long line in the torrents description are rendered outside of the description div #525

Closed josecelano closed 6 months ago

josecelano commented 6 months ago

image

hungfnt commented 6 months ago

Hey, I noticed the descriptions for each torrent in the list weren't word-wrapped. I'm adding it now. We can use the class break-words in Markdown instead of all Tab components.

hungfnt commented 6 months ago

The markdown width should be inherit from parent div.

image

When I use class="prose max-w-none text-justify break-words" for div of Markdown, everything is good except the overflow word.

With break-all, the long-word case is handled well, but normal paragraphs lose readability.

Followed this solution, 2 cases are good.