# NPM
$ npm i bulma-radio --save# Yarn
yarn add bulma-borderUse with scss
/* Bulma Border */
@import "node_modules/bulma-border/bulma-border";/* Bulma Border */
import 'bulma-border';Add the following line at the end of the head element on your HTML file
<!-- Bulma Border -->
<link rel="stylesheet" href="https://unpkg.com/bulma-border"/>.has-border[-direction]?[-color]?[-style]?[-size]?
Note Neither of direction, color and size have to be supplied,
i.e. .has-border-right and .has-border-black-6 are both valid
xthat includesleftandrightythat includestop,bottom
default: all directions
Bulma's original colors palette such as :
white, black, light, dark, primary, link, info, success, warning and danger
default: primary
Common css styling values :
solid, dotted, dashed, double, groove, ridge, inset and outset
default: solid
Bulma's original sizes with three added sizes
$size-8: 0.5rem !default;
$size-9: 0.25rem !default;
$size-10: 0.125rem !default;/* border width */
$def-border-width: 125rem;
/* border color */
$def-border-color: $primary;
/* border style */
$def-border-style: solid;.has-border-x-8
will translate into
border-left-width: 0.5rem;
border-left-color: hsl(171, 100%, 41%);
border-left-style: solid;
border-right-width: 0.5rem;
border-right-color: hsl(171, 100%, 41%);
border-right-style: solid;.has-border-left-success
will translate into
border-left-width: 0.125rem;
border-left-color: hsl(141, 53%, 53%);
border-left-style: solid;- Fork it!
- Create your feature branch:
git checkout -b my-new-feature - Commit your changes:
git commit -am ':sparkles: feat: Add some feature' - Push to the branch:
git push origin my-new-feature - Submit a pull request
Note Use of Gitmoji and Semantic Commit Messages are highly encouraged
- Maintainer - @alexandre-eliot
- Make sure you are using the latest version of the package
- Provide steps to reproduce
- Provide an expected behavior
- Describe what is actually happening
- Platform, Browser & version as some issues may be browser specific
- Copyright © 2021 Alexandre Eliot
- Licensed under MIT
See the CHANGELOG.md file