diff options
author | Wu Cheng-Han | 2016-10-21 18:15:28 +0800 |
---|---|---|
committer | Wu Cheng-Han | 2016-10-21 18:15:28 +0800 |
commit | 250b462249c319ffe457bdf9061700c022146d22 (patch) | |
tree | 9c3ce693de9c24bff2688881211af4e92ba767b2 | |
parent | 215b5baa9fd81a3d7e41e75e0a5fb9efb3e66cd7 (diff) |
Fix markdown styles conflicting bootstrap on p and ul under alert area
Diffstat (limited to '')
-rw-r--r-- | public/css/markdown.css | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/public/css/markdown.css b/public/css/markdown.css index c66ab20d..eca80312 100644 --- a/public/css/markdown.css +++ b/public/css/markdown.css @@ -128,4 +128,9 @@ white-space: -pre-wrap; /* Opera 4-6 */ white-space: -o-pre-wrap; /* Opera 7 */ word-wrap: break-word; /* Internet Explorer 5.5+ */ -}
\ No newline at end of file +} + +.markdown-body .alert > p, +.markdown-body .alert > ul { + margin-bottom: 0; +} |