mirror of
https://github.com/danog/sass-site.git
synced 2024-12-12 17:37:36 +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)
220 B
220 B
.message, .success, .error, .warning {
border: 1px solid #cccccc;
padding: 10px;
color: #333;
}
.success {
border-color: green;
}
.error {
border-color: red;
}
.warning {
border-color: yellow;
}