This commit is contained in:
Zacharias-Brohn
2026-01-14 22:51:46 +01:00
parent e222977f5c
commit c51b3c3fab
14 changed files with 452 additions and 216 deletions
+4 -4
View File
@@ -1,5 +1,4 @@
.markdown {
word-wrap: break-word;
overflow-wrap: break-word;
}
@@ -14,19 +13,20 @@
.codeBlock {
display: block;
white-space: pre-wrap;
word-break: break-word;
word-break: break-all;
max-width: 100%;
overflow-x: auto;
}
.fadeIn {
animation: textFadeIn 0.3s ease-out forwards;
animation: text-fade-in 0.3s ease-out forwards;
}
@keyframes textFadeIn {
@keyframes text-fade-in {
from {
opacity: 0;
}
to {
opacity: 1;
}