Skip to content

Commit

Permalink
Adds blurbs to components
Browse files Browse the repository at this point in the history
  • Loading branch information
claudiopro committed Jan 8, 2017
1 parent 278f8d9 commit 8741142
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
4 changes: 4 additions & 0 deletions sass/_buttons.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,8 @@ title: Button
name: btn
category: controls
---
Use the `btn` class on `<button>` or `<input type="button">` elements.
```html_example_table
<input type="button" class="btn" value="Button"/>
Expand Down Expand Up @@ -47,6 +49,8 @@ title: Small Button
name: btn-small
category: controls
---
Add the `btn-small` class to other button classes to obtain a smaller affordance.
```html_example_table
<input type="button" class="btn btn-small" value="Button"/>
Expand Down
8 changes: 8 additions & 0 deletions sass/_tables.scss
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@ title: Table
name: table
category: tables
---
Use the `table` class on tables to apply a clean, borderless layout, and separate
headings from the body with a horizontal line.
```html_example
<table class="table">
<tr>
Expand Down Expand Up @@ -46,6 +49,9 @@ title: Striped Table
name: table-striped
category: tables
---
Use the `table-striped` modifier class on tables to apply a striped pattern to visually
separate rows.
```html_example
<table class="table table-striped">
<tr>
Expand Down Expand Up @@ -79,6 +85,8 @@ title: Compact Table
name: table-compact
category: tables
---
Use the `table-compact` modifier class on tables to reduce the cell padding for a more compact layout.
```html_example
<table class="table table-compact">
<tr>
Expand Down

0 comments on commit 8741142

Please sign in to comment.