Hi DW:
Why is it that the class max-w-75ch is applied on all rich text fields?
This is a code example from "Swift_Text.cshtml":
if (!string.IsNullOrEmpty(Model.Item.GetString("Text")))
{
<div class="max-w-75ch mb-0-last-child">
@Model.Item.GetString("Text")
</div>
}
our text fields, but it seems to be impossible to get rid of the max width, and looking at the code it seems intended.
Is this on purpose?