Fixes url word breaking

Would probably ideally be break-word for all the non URL related things in the form but I don't think it will have any effect on anything that's not URLs in practice?
This commit is contained in:
Henry Wilkinson 2023-02-03 03:10:28 -05:00
parent 8e65edc6f8
commit a2a8d283ff

View File

@ -274,7 +274,7 @@ export class ConfigDetails extends LiteElement {
>`;
}
return html`
<btrix-desc-list-item label=${label}> ${content} </btrix-desc-list-item>
<btrix-desc-list-item label=${label} class="break-all"> ${content} </btrix-desc-list-item>
`;
}
}