-
Notifications
You must be signed in to change notification settings - Fork 5.1k
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
CSS: "alert" is missing "margin-top" #1390
Comments
Yeah, I have seen this before and we should fix it. Can you add some On Tue, Apr 26, 2016 at 2:21 AM, Matthias Geier notifications@github.com
Brian E. Granger |
I've created a PR: #1396. |
Thanks for the PR @mgeier and for improving the visual output. 🍰 |
Currently, the
alert
class has onlymargin-bottom
(I guess this comes from bootstrap):Since most other elements use only
margin-top
, those alert boxes are much too close to whatever comes before them.Probably something like this could be added:
... or it could just be added unconditionally, like the original
margin-bottom
:But probably the best solution would be, to overwrite the original
margin-bottom
and just do the same as with plain old<p>
:The text was updated successfully, but these errors were encountered: