DEV Community

Cover image for Tailwind Alerts
Keep Coding
Keep Coding

Posted on

Tailwind Alerts

Responsive Alerts built with the latest Tailwind. Alerts provide contextual feedback messages for typical user actions with a handful of responsible and flexible alert boxes.


Installation

Quick Start

In order to start using Tailwind simply download our starter.

DOWNLOAD ZIP STARTER

Tailwind Elements does not change or add any CSS to the already one from TailwindCSS.

You can directly copy our components into your Tailwind design and they will work straight away.

In some dynamic components (like dropdowns or modals) we add Font Awesome icons and custom JavaScript. However, they do not require any additional installation, all the necessary code is always included in the example and copied to any Tailwind project - it will work.


MDB GO


Customization

Basic
HTML
<div
class="block text-sm text-left text-gray-600 bg-gray-500 bg-opacity-10 h-12 flex items-center p-4 rounded-md"
role="alert"
>
<svg
  xmlns="http://www.w3.org/2000/svg"
  fill="none"
  viewBox="0 0 24 24"
  class="w-6 h-6 mx-2 stroke-current"
>

  <path
    stroke-linecap="round"
    stroke-linejoin="round"
    stroke-width="2"
    d="M18.364 18.364A9 9 0 005.636 5.636m12.728 12.728A9 9 0 015.636 5.636m12.728 12.728L5.636 5.636"
  ></path>

</svg>
This is a default alert—check it out!
</div>
Enter fullscreen mode Exit fullscreen mode
Basic alert bordered
HTML
<div
class="block text-sm text-left text-gray-600 bg-gray-500 bg-opacity-10 border border-gray-400 h-12 flex items-center p-4 rounded-md"
role="alert"
>
This is a default alert—check it out!
</div>

<div
class="my-3 block text-sm text-left text-purple-600 bg-purple-500 bg-opacity-10 border border-purple-400 h-12 flex items-center p-4 rounded-md"
role="alert"
>
This is a primary alert—check it out!
</div>

<div
class="block text-sm text-left text-indigo-600 bg-indigo-500 bg-opacity-10 border border-indigo-400 h-12 flex items-center p-4 rounded-md"
role="alert"
>
This is a success alert—check it out!
</div>

<div
class=" my-3 block text-sm text-left text-blue-600 bg-blue-500 bg-opacity-10 border border-blue-400 h-12 flex items-center p-4 rounded-md"
role="alert"
>
This is a info alert—check it out!
</div>

<div
class="block text-sm text-left text-yellow-600 bg-yellow-500 bg-opacity-10 border border-yellow-400 h-12 flex items-center p-4 rounded-md"
role="alert"
>
This is a warning alert—check it out!
</div>

<div
class=" my-3 block text-sm text-left text-red-600 bg-red-500 bg-opacity-10 border border-red-400 h-12 flex items-center p-4 rounded-md"
role="alert"
>
This is a danger alert—check it out!
</div>
Enter fullscreen mode Exit fullscreen mode

You can see more customization examples on the 📄 Alerts documentation page


Crucial Resources

Here are the resources that we have prepared to help you work with this component:

  1. Read 📄 Alerts documentation page <-- start here
  2. In to get the most out of your project, you should also get acquainted with other Components options related to Alerts. See the section below to find the list of them.
  3. After finishing the project you can publish it with CLI in order to receive 💽 Free hosting (beta)

Related Components options & features


Additional resources

Learn web development with our learning roadmap:
🎓 Start Learning

Join our mailing list & receive exclusive resources for developers
🎁 Get gifts

Join our private FB group for inspiration & community experience
👨‍👩‍👧‍👦 Ask to join

Support creation of open-source packages with a STAR on GitHub
GitHub stars

Top comments (0)