-
-
Notifications
You must be signed in to change notification settings - Fork 85
New issue
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
Support for borders? #177
Comments
cc @xiCO2k - this could be done with unicode chars. |
Here's my super crude proof of concept, as I'm not sure how the library works under the hood. Result looks pretty smooth IMHO. $width = 20;
$spacing = str_repeat(' ', $width);
$lines = str_repeat('─', $width);
$line1 = sprintf('<span class="text-blue-500">%s</span>',
str_replace(' ', ' ',
str_pad('Hello World!', $width, ' ', STR_PAD_BOTH)
)
);
render(<<<HTML
<div class="text-green-500">
<br>
╭{$lines}╮<br>
│{$spacing}│<br>
│{$line1}│<br>
│{$spacing}│<br>
╰{$lines}╯
<br>
</div>
HTML
); |
Yes, that is a good idea, @caendesilva if you want to take this one, go ahead. |
I'll try it out, might take a little bit as I have to learn how the package works internally. I'll keep you posted. |
I think something like this would be quite cool.
The text was updated successfully, but these errors were encountered: