We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Now termwind can inherit width on two lines like:
termwind/tests/render.php
Lines 213 to 222 in 9c030e6
But if add more than three lines, it will be missing after the last line space.
This unit test is failed:
$html = parse(<<<'HTML' <div class="w-10"> <div class="w-full bg-red">AAA</div> <div class="w-full bg-blue">BBB</div> <div class="w-full bg-yellow">CCC</div> </div> HTML); // this is expected expect($html)->toBe("<bg=red>AAA </>\n<bg=blue>BBB </>\n<bg=yellow>CCC </>"); // // this is actual // expect($html)->toBe("<bg=red>AAA </>\n<bg=blue>BBB </>\n<bg=yellow>CCC</>");
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Now termwind can inherit width on two lines like:
termwind/tests/render.php
Lines 213 to 222 in 9c030e6
But if add more than three lines, it will be missing after the last line space.
This unit test is failed:
The text was updated successfully, but these errors were encountered: