Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/alexanbj/rulma
React components for Bulma
https://github.com/alexanbj/rulma
bulma react
Last synced: 3 months ago
JSON representation
React components for Bulma
- Host: GitHub
- URL: https://github.com/alexanbj/rulma
- Owner: alexanbj
- License: mit
- Archived: true
- Created: 2017-02-24T16:43:34.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-06-26T12:22:24.000Z (over 7 years ago)
- Last Synced: 2024-09-24T16:03:44.143Z (3 months ago)
- Topics: bulma, react
- Language: JavaScript
- Homepage: https://alexanbj.github.io/rulma/
- Size: 1.06 MB
- Stars: 7
- Watchers: 3
- Forks: 1
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Rulma
[![build status](https://img.shields.io/travis/alexanbj/rulma/master.svg?style=flat-square)](https://travis-ci.org/alexanbj/rulma)
[![version](https://img.shields.io/npm/v/rulma.svg?style=flat-square)](https://www.npmjs.org/package/rulma)> React components for [Bulma](https://github.com/jgthms/bulma).
#### Disclaimer
Rulma is in the early stages, with active development, so it could be subject to breaking changes.## Getting started
#### Install
```bash
npm install --save rulma
```#### Include Bulma CSS
Include either Bulma's CSS (or your modified version if you've changed the Bulma variables).If you are using webpack with CSS loader:
Install Bulma:
```bash
npm install --save bulma
```
and import Bulma's CSS somewhere in your application:
```js
import 'bulma/css/bulma.css';
```If not using webpack, you can simply include it in directly in the html `` section from some CDN of your choosing:
```html```
#### Font Awesome
You probably want icons, so while you're at it, drop some [Font Awesome](http://fontawesome.io/) in there as well:
```html```