- Documented and Self explaining methods
- Small size without any external libraries
The plugin are available in node and yarn and package managers.
# Node
npm install solid-bulma # Not yet published
# Yarn
yarn add solid-bulma # Not yet published
Import the Bulma css in your css file.
@import "https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css";
You can also import the stylesheet in your HTML file
<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/[email protected]/css/bulma.min.css">
Bulma style is also available in SASS
# Node
npm install bulma
Using solid-bulma components
import { BButton } from 'solid-bulma';
function App() {
return (
<div>
<b-button
color={'primary'}
isLight={true}>
Button
</b-button>
</div>
)
}
Code released under MIT license.