summaryrefslogtreecommitdiffstats
path: root/web/sass-files/sass/partials/_markdown.scss
diff options
context:
space:
mode:
authorhmhealey <harrisonmhealey@gmail.com>2015-09-23 17:42:57 -0400
committerhmhealey <harrisonmhealey@gmail.com>2015-09-23 17:42:57 -0400
commit511fcce55345adb2a6b05cf058fd4d238abcc521 (patch)
tree83fdb02089198f4e07c07becdac72a0be62fd6cd /web/sass-files/sass/partials/_markdown.scss
parentf9abb5a94ae2caf6e3037ac9f716813a36e401fe (diff)
downloadchat-511fcce55345adb2a6b05cf058fd4d238abcc521.tar.gz
chat-511fcce55345adb2a6b05cf058fd4d238abcc521.tar.bz2
chat-511fcce55345adb2a6b05cf058fd4d238abcc521.zip
Restricted markdown output to only appear on one line when in singleline mode
Diffstat (limited to 'web/sass-files/sass/partials/_markdown.scss')
-rw-r--r--web/sass-files/sass/partials/_markdown.scss8
1 files changed, 7 insertions, 1 deletions
diff --git a/web/sass-files/sass/partials/_markdown.scss b/web/sass-files/sass/partials/_markdown.scss
index c09e9d7b4..bccea6e0e 100644
--- a/web/sass-files/sass/partials/_markdown.scss
+++ b/web/sass-files/sass/partials/_markdown.scss
@@ -1,6 +1,12 @@
.markdown__heading {
font-weight: bold;
}
+.markdown__paragraph-inline {
+ display: inline;
+ + .markdown__paragraph-inline {
+ margin-left: 4px;
+ }
+}
.markdown__table {
background: #fff;
margin: 5px 0 10px;
@@ -25,4 +31,4 @@ pre {
code {
color: #c7254e;
}
-} \ No newline at end of file
+}