mirror of https://github.com/zulip/zulip.git
css: Add word-break property to .modal__title.
Modal that were used as dialog boxes for editing info had issues with long heading text int .modal__title, This commit add word-break to break words and avoid abrupt ui in such cases.
This commit is contained in:
parent
ae16787a25
commit
308f42eded
|
@ -47,6 +47,8 @@
|
|||
font-size: 1.375rem;
|
||||
font-weight: 600;
|
||||
line-height: 1.25;
|
||||
overflow: hidden;
|
||||
word-wrap: break-word;
|
||||
|
||||
/* help_link_widget margin for the fa-circle-o. */
|
||||
.help_link_widget {
|
||||
|
|
Loading…
Reference in New Issue