Improve CSS in default and notebook mode (#1209)

This commit is contained in:
DavG25 2023-04-15 04:03:43 +02:00 committed by GitHub
parent c3aa79118e
commit 5126c97139
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,6 +4,8 @@
margin-right: auto;
background-color: rgb(31, 41, 55);
padding:3em;
word-break: break-word;
overflow-wrap: anywhere;
}
.container p {
@ -12,3 +14,15 @@
margin-bottom: 22px;
line-height: 1.4 !important;
}
.container li > p {
display: inline !important;
}
.container code {
overflow-x: auto;
}
.container :not(pre) > code {
white-space: normal !important;
}