laravel / nova-issues

556 stars 34 forks source link

Nova Notifications breaks some words #5784

Closed henryavila closed 1 year ago

henryavila commented 1 year ago

Description:

Some words on Nova Notifications are breaked. image

Removing the "break-all" fix the problem image image

and still it works with different text size

image image

Detailed steps to reproduce the issue on a fresh Nova installation:

Send NovaNotification with the folowing text: "This is a sample of notification with more than one line. Some long words are "breaked""

crynobone commented 1 year ago

Conflict with #5618

henryavila commented 1 year ago

This CSS, with break-all class solved booth of the problems

-ms-word-break: break-all;
word-break: break-all;
word-break: break-word;

-webkit-hyphens: auto;
-moz-hyphens: auto;
hyphens: auto;

image

image

github-actions[bot] commented 1 year ago

This thread has been automatically locked since there has not been any recent activity after it was closed. Please open a new issue for related bugs.