Fix .block css definition

It was selecting .blocks in the highlighted syntax. See #836
This commit is contained in:
Ben Ogle
2013-09-12 13:47:10 -07:00
parent 2304518a1e
commit d2e125357a

View File

@@ -15,11 +15,11 @@
// Blocks
.block {
display: block;
// Must be div.block so as not to affect syntax highlighting.
div.block {
margin-bottom: @component-padding;
}
div > .block:last-child {
div > div.block:last-child {
margin-bottom: 0;
}