With this addition it will possible to make stuff like this:
render(<<<HTML
<div class="flex my-1 mx-2 space-x-1">
<span class="px-1 bg-gray">
min-w
</span>
<span class="flex-1 content-repeat-[.] text-gray min-w-3"></span>
<span>
With the `min-w` addition you can make sure that the content repeat always repeat even if there is no space on the line.
</span>
</div>
HTML);
This PR adds support for the
min-w-{width}
class.With this addition it will possible to make stuff like this:
Result