RblSb / SyncTube

Synchronized video viewing with chat and other features (one-channel web service)
MIT License
258 stars 54 forks source link

Chat not breaking long strings of text #6

Closed ghost closed 4 years ago

ghost commented 4 years ago

Hi! First, thank you for implementing split-grid in a much more elegant way than I could! Second, sadly it seems that changing the chat column from a px value to a fr value has broken the chat from breaking words off to the next line.

Current build

image

Old example

image

I had previously set the chat to 384px because it's equal to 24rem (an estimate size of chat that people are accustomed to i.e. YouTube, Twitch, Netflix Party). But understand that that sizing hides most of the controls on larger displays which is why I'm guessing it was changed.

Currently setting:

#messagebuffer {
  word-wrap: anywhere;
}

fixes the problem but it seems that support is still lingering. It may be better to set it to a px value if that is alright with you, though if you prefer fr it may still be better to set it back to px just for the time being as a temporary fix until a solution is found!

Thank you for taking your time to read this!