markdown code blocks not preserving line breaks, removed a bootstrap over-ride which fixes this, but also changed the style to pre-wrap to wrap the text rather than the default horizontal scroll

This commit is contained in:
zotlabs 2017-09-07 13:19:13 -07:00
parent 41e0d5f664
commit 23e774db8e
2 changed files with 10 additions and 4 deletions

View File

@ -71,10 +71,6 @@ nav .dropdown-menu {
min-width: auto; min-width: auto;
} }
code {
white-space: normal;
}
label { label {
font-weight: bold; font-weight: bold;
} }

View File

@ -1,3 +1,4 @@
/* jot */ /* jot */
.jothidden input[type="text"] { .jothidden input[type="text"] {
@ -302,3 +303,12 @@ img.smiley.emoji:hover {
#filer_save { #filer_save {
margin-left: 15px; margin-left: 15px;
} }
/* general over-rides */
/* prevent horizontal scrollbars in code blocks */
code {
white-space: pre-wrap;
}