Merge "Enforce no top&bottom margins on lists on page previews"

This commit is contained in:
jenkins-bot 2017-07-03 13:52:28 +00:00 committed by Gerrit Code Review
commit 6a1176c0d2

View file

@ -157,10 +157,19 @@
}
/* stylelint-enable function-linear-gradient-no-nonstandard-direction */
// Make the text fit in exactly as many lines as we want.
p {
// Make the text fit in exactly as many lines as we want.
margin: 0;
}
ul,
ol,
li,
dl,
dd,
dt {
margin-top: 0;
margin-bottom: 0;
}
}
svg {