# Alert

The Alert component is slightly modified to make it more beautiful.

TIP

We have used alert component (opens new window) of ng bootstrap.

# Alert Structure

We have added .alert-heading class for heading and .alert-body for body-content. Also we have added .alert-link class for link inside alert.

<ngb-alert [type]="'warning'" [dismissible]="false">
  <h4 class="alert-heading">Lorem ipsum dolor sit amet</h4>
  <div class="alert-body">
    Lorem ipsum dolor sit amet
    <a href="javascript:void(0)" class="alert-link">
      consectetur
    </a>
  </div>
</ngb-alert>

Result:

alert-structure

# Alert Colors

To change the color of alert, use [type]="{colorName}" along with ngb-alert compoent.

<ngb-alert [type]="'primary'" [dismissible]="false">
  <h4 class="alert-heading">Primary</h4>
  <div class="alert-body">
    Tootsie roll lollipop lollipop icing. Wafer cookie danish macaroon. Liquorice fruitcake apple pie I love cupcake
    cupcake.
  </div>
</ngb-alert>

<ngb-alert [type]="'secondary'" [dismissible]="false">
  <h4 class="alert-heading">Secondary</h4>
  <div class="alert-body">
    Tootsie roll lollipop lollipop icing. Wafer cookie danish macaroon. Liquorice fruitcake apple pie I love cupcake
    cupcake.
  </div>
</ngb-alert>

<ngb-alert [type]="'success'" [dismissible]="false">
  <h4 class="alert-heading">Success</h4>
  <div class="alert-body">
    Tootsie roll lollipop lollipop icing. Wafer cookie danish macaroon. Liquorice fruitcake apple pie I love cupcake
    cupcake.
  </div>
</ngb-alert>

<ngb-alert [type]="'danger'" [dismissible]="false">
  <h4 class="alert-heading">Danger</h4>
  <div class="alert-body">
    Tootsie roll lollipop lollipop icing. Wafer cookie danish macaroon. Liquorice fruitcake apple pie I love cupcake
    cupcake.
  </div>
</ngb-alert>

<ngb-alert [type]="'warning'" [dismissible]="false">
  <h4 class="alert-heading">Warning</h4>
  <div class="alert-body">
    Tootsie roll lollipop lollipop icing. Wafer cookie danish macaroon. Liquorice fruitcake apple pie I love cupcake
    cupcake.
  </div>
</ngb-alert>

<ngb-alert [type]="'info'" [dismissible]="false">
  <h4 class="alert-heading">Info</h4>
  <div class="alert-body">
    Tootsie roll lollipop lollipop icing. Wafer cookie danish macaroon. Liquorice fruitcake apple pie I love cupcake
    cupcake.
  </div>
</ngb-alert>

<ngb-alert [type]="'dark'" [dismissible]="false">
  <h4 class="alert-heading">Dark</h4>
  <div class="alert-body">
    Tootsie roll lollipop lollipop icing. Wafer cookie danish macaroon. Liquorice fruitcake apple pie I love cupcake
    cupcake.
  </div>
</ngb-alert>
Property Class Description
Type [type]="{colorName}" To change the alert color. colorName : primary / secondary / success / danger / warning / info.

Result:

alert-structure

You can check the demo on this (opens new window) page.

Last Updated: 3/9/2021, 4:18:01 PM