Skip to content

Commit

Permalink
Fix typo in code snippet for extend
Browse files Browse the repository at this point in the history
the SCSS snippet sets the "border" property of .message,
but the resulting CSS snippet has "border-color" (should be "border")
(and obviously you can't use "1px solid" on border-color)
  • Loading branch information
bjnord committed Nov 7, 2013
1 parent 8f00027 commit 6a1e588
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/code-snippets/_homepage-extend-css.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
```css
.message, .success, .error, .warning {
border-color: 1px solid #cccccc;
border: 1px solid #cccccc;
padding: 10px;
color: #333;
}
Expand Down

0 comments on commit 6a1e588

Please sign in to comment.