Skip to content

🧩 Lightweight UI components for SolidJS based on Bulma

License

Notifications You must be signed in to change notification settings

jaoaustero/solid-bulma

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

13 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Notice: Under development

solid-bulma


Features

  • Documented and Self explaining methods
  • Small size without any external libraries

Installation

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

Usage

Stylesheet

Import the Bulma css in your css file.

@import "https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css";

You can also import the stylesheet in your HTML file

<link rel="stylesheet" href="https://cdn.jsdelivr.net/npm/bulma@0.9.3/css/bulma.min.css">

Bulma style is also available in SASS

# Node
npm install bulma

Components

Using solid-bulma components

import { BButton } from 'solid-bulma';

function App() {
    return (
        <div>
            <b-button
                color={'primary'}
                isLight={true}>
                Button
            </b-button>
        </div>
    )
}

License

Code released under MIT license.

Releases

No releases published

Packages

No packages published