Footer

A simple responsive footer which can include anything: lists, headings, columns, icons, buttons, etc.

The Bulma footer is a simple container, with lots of bottom padding, making it great as the last element of any webpage.

To use a Bulma Footer component in your application, you need to import the BulmaFooterModule by adding the following lines to your app.module.ts file.

import { BulmaFooterModule } from 'ngx-bulma';

@NgModule({
  imports: [BulmaFooterModule]
  // ...
})
export class AppModule {}
Component Description
bu-footer Parent Footer Component

An example footer is shown below.



<bu-footer>
  <div class="content has-text-centered">
    <p>
      <strong>ngx2-bulma</strong> by <a href="https://github.com/ngx-builders">ngx-builders</a>. The
      source code is licensed{' '}
      <a href="https://github.com/ngx-builders/ngx-bulma/blob/master/LICENSE">MIT</a>.
    </p>
  </div>
</bu-footer>