remove only the last white space in class export, not all

This commit is contained in:
Eric Jimenez 2016-04-18 13:19:28 -04:00 committed by Naomi Black
parent 42ba93d6ec
commit cb0a4a7fe0

View File

@ -159,9 +159,9 @@ input.api-filter {
font-size: 14px; font-size: 14px;
color: #1a2326; color: #1a2326;
// Override highlight.js // the last .pln (white space) creates additional spacing between sections of the api doc. Remove it.
&.no-pln { &.no-pln {
.pln { .pln:last-child {
display: none; display: none;
} }
} }