Compare commits

...
Sign in to create a new pull request.

1 commit

Author SHA1 Message Date
Kav
d41e81c519
Fix #724 : Lodestar gallery block margin issue
This solves the bottom-margin issue with the gallery block on the front page of Lodestar. The theme wants to set a margin-bottom for the last item in the entry-content to be 0, but doesn't account for the block editor. This PR fixes this by limiting this rule to the last direct descendent of the entry-content.
2019-10-02 10:32:14 +05:30

View file

@ -1232,7 +1232,7 @@ body:not(.logged-in) .lodestar-panel .jetpack-testimonial .entry-header {
text-align: center;
}
.lodestar-intro .entry-content *:last-child {
.lodestar-intro .entry-content > *:last-child {
margin-bottom: 0;
}