-
Notifications
You must be signed in to change notification settings - Fork 2.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Added spacing between list items #7401
Conversation
@@ -3,8 +3,9 @@ | |||
p:last-child { margin-bottom: 0; } | |||
|
|||
ul, ol { | |||
margin-top:0.8em; | |||
margin-bottom:0.8em; | |||
margin-top: 0.8em; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
0.8
should be written without a leading zero as.8
- Properties should be ordered margin-bottom, margin-top
margin-top:0.8em; | ||
margin-bottom:0.8em; | ||
margin-top: 0.8em; | ||
margin-bottom: 0.8em; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
0.8
should be written without a leading zero as .8
margin-bottom:0.8em; | ||
margin-top: 0.8em; | ||
margin-bottom: 0.8em; | ||
li { margin-bottom: 0.5em; } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
0.5
should be written without a leading zero as .5
4546117
to
a5f81cb
Compare
a5f81cb
to
86235f1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Tests are green and both @svbergerem and @SuperTux88 thumb'ed up the .5em
in the issue, so I guess this is fine to merge.
Merged as 38450ea. Thank you very much and congrats to your first PR. 🍪🍰🍪🎉🍪🍰🍪 |
fixes #7400