diaspora/app/assets/stylesheets/markdown-content.scss
Jonne Haß 3a527d01da Remove top margin for first heading in a post
That is, if it's the first element in the post

closes #6110
2015-06-16 23:43:14 +02:00

17 lines
304 B
SCSS

.markdown-content {
p { margin: 0 0 0.8em; }
p:last-child { margin-bottom: 0; }
ul, ol {
margin-top:0.8em;
margin-bottom:0.8em;
&:first-child { margin-top: 0; }
&:last-child { margin-bottom: 0; }
}
h1, h2, h3, h4, h5, h6 {
&:first-child {
margin-top: 0;
}
}
}