Skip to content

Commit 0ec0c88

Browse files
committed
Updated readme
1 parent d0ae8fd commit 0ec0c88

File tree

1 file changed

+10
-2
lines changed

1 file changed

+10
-2
lines changed

README.md

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,17 @@
11
# bulma-block-list
22
A simple scss package extending Bulma with block style list elements
33

4-
* Copy the `src/block-list.scss` file into your project
5-
* `@import block-list.scss` after the imports for Bulma.
4+
* `npm i -S bulma-block-list`
5+
* `@import "node_modules/bulma-block-list/src/block-list";` after importing [Bulma](https://bulma.io/documentation/customize/with-node-sass/#3-create-a-sass-file).
66
* Create a ul and give it the class of `block-list`
77
* Add any modifier classes to change the styles as needed
88

9+
```html
10+
<ul class="block-list is-small is-outlined is-success is-centered">
11+
<li>Item one</li>
12+
<li>Item two</li>
13+
<li>Item three</li>
14+
</ul>
15+
```
16+
917
For examples see [csrhymes.com/bulma-block-list](https://www.csrhymes.com/bulma-block-list)

0 commit comments

Comments
 (0)