Merge "Reduce `li` selector specificity for general li treatment"

This commit is contained in:
jenkins-bot 2019-04-02 00:25:22 +00:00 committed by Gerrit Code Review
commit 541ee9b3eb
1 changed files with 5 additions and 5 deletions

View File

@ -23,13 +23,13 @@
ul {
margin-left: 1em;
}
}
li {
margin-bottom: 10px;
li {
margin-bottom: 10px;
&:last-child {
margin-bottom: inherit;
}
&:last-child {
margin-bottom: inherit;
}
}
/* stylelint-enable no-descending-specificity */