diff --git a/docs/buttons.html b/docs/buttons.html index e1799667f..739e2ae22 100644 --- a/docs/buttons.html +++ b/docs/buttons.html @@ -114,12 +114,12 @@
Buttons can be styled to look like normal links with the button-link modifier. The appropriate sizing is placed so they align properly with regular buttons.
<button type="button">Button</button>
-<button type="button" class="button-link">Link</button>
+<a href="#" class="button">Button</a>
+<a href="#" class="button button-link">Link</a>
File Buttons
diff --git a/source/docs/buttons.md b/source/docs/buttons.md
index 573e7ec8a..1f91f15cc 100644
--- a/source/docs/buttons.md
+++ b/source/docs/buttons.md
@@ -82,13 +82,13 @@ You can force buttons to have an active state by applying the `active` class.
Buttons can be styled to look like normal links with the `button-link` modifier. The appropriate sizing is placed so they align properly with regular buttons.
```html
-
-
+Button
+Link
```
### File Buttons