34 lines
420 B
CSS
34 lines
420 B
CSS
.markdown {
|
|
word-wrap: break-word;
|
|
overflow-wrap: break-word;
|
|
}
|
|
|
|
.markdown p:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
.preWrapper {
|
|
margin: 0.5em 0;
|
|
}
|
|
|
|
.codeBlock {
|
|
display: block;
|
|
white-space: pre-wrap;
|
|
word-break: break-word;
|
|
max-width: 100%;
|
|
overflow-x: auto;
|
|
}
|
|
|
|
.fadeIn {
|
|
animation: textFadeIn 0.3s ease-out forwards;
|
|
}
|
|
|
|
@keyframes textFadeIn {
|
|
from {
|
|
opacity: 0;
|
|
}
|
|
to {
|
|
opacity: 1;
|
|
}
|
|
}
|