awssat / tailwindo

🔌 Convert Bootstrap CSS code to Tailwind CSS code
MIT License
1.09k stars 108 forks source link

BoostrapFramework.php missing bg- on line 538 #40

Closed outofcontrol closed 3 years ago

outofcontrol commented 3 years ago

Apologies, I would have done a PR but editor reformats your page add a slew of additional diffs. Line 538 is:

        'success'   => 'bg-green-500 text-white hover:green-600',

But should be

        'success'   => 'bg-green-500 text-white hover:bg-green-600',
abdumu commented 3 years ago

You could’ve done it online through github website.

try. On 6 Jan 2021, 1:59 AM +0300, James Riordon notifications@github.com, wrote:

Apologies, I would have done a PR but editor reformats your page add a slew of additional diffs. Line 538 is: 'success' => 'bg-green-500 text-white hover:green-600', But should be 'success' => 'bg-green-500 text-white hover:bg-green-600', — You are receiving this because you are subscribed to this thread. Reply to this email directly, view it on GitHub, or unsubscribe.

outofcontrol commented 3 years ago

Aha, of course. Completely forgot about doing it directly in GitHub. PR created.