Skip to content
This repository has been archived by the owner on Sep 27, 2022. It is now read-only.

alexanbj/rulma

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Rulma

build status version

React components for Bulma.

Disclaimer

Rulma is in the early stages, with active development, so it could be subject to breaking changes.

Getting started

Install

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:

npm install --save bulma

and import Bulma's CSS somewhere in your application:

import 'bulma/css/bulma.css';

If not using webpack, you can simply include it in directly in the html <head> section from some CDN of your choosing:

<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/bulma/0.4.2/css/bulma.css">

Font Awesome

You probably want icons, so while you're at it, drop some Font Awesome in there as well:

<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">