@angular-bulma/components
v0.8.1
Published
![npm](https://img.shields.io/npm/v/@angular-bulma/components)
Downloads
22
Maintainers
Readme
@angular-bulma/components
Current Components
- Breadcrumb
- Dropdown
- Menu
- Message
- Navbar
Future Components
- Alert
- Carousel
- Modal
- Pagination
- Panel
- Tabs
Installation Instructions
@angular-bulma/components
does not come with the bulma
styles compiled with the project to allow for use of other styles like those defined in bulmaswatch
.
bulma
must be added to your styles.scss
file:
@import '~bulma';
Then import the library module or per-component module into your application:
import { BulmaComponentModule } from '@angular-bulma/components';
@NgModule({
imports: [
...
BulmaComponentsModule
...
],
...
})
export class AppModule { }