mirror of
https://github.com/danog/sass-site.git
synced 2024-12-13 18:07:35 +01:00
6a1e588064
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)
19 lines
220 B
Markdown
19 lines
220 B
Markdown
```css
|
|
.message, .success, .error, .warning {
|
|
border: 1px solid #cccccc;
|
|
padding: 10px;
|
|
color: #333;
|
|
}
|
|
|
|
.success {
|
|
border-color: green;
|
|
}
|
|
|
|
.error {
|
|
border-color: red;
|
|
}
|
|
|
|
.warning {
|
|
border-color: yellow;
|
|
}
|
|
``` |