Refaktorierung für HTML-Sanitization mit neuer Sanitizer-Klasse.

- Bestehende Sanitization überarbeitet.
- Injektionsmethode für flexible Konfiguration implementiert.
- Wichtige Abschnitte in `show-envelope` hervorgehoben.
This commit is contained in:
Developer 02
2024-07-18 10:52:39 +02:00
parent 1c2df71e0f
commit 43ae15b71c
9 changed files with 61 additions and 18 deletions

View File

@@ -201,7 +201,13 @@ footer#page-footer {
min-width: 4vw;
}
/* Additional styles for better mobile responsiveness */
.highlight {
font-weight: 700;
font-size: 13px;
}
/* styles for mobile responsiveness */
@media (max-width: 767px) {
.navbar {
flex-direction: column;
@@ -256,3 +262,11 @@ footer#page-footer {
max-width: 90%;
}
}
@media (max-height: 850px) {
.collapse .card-text, .collapsing .card-text {
font-size: 0.5rem; /* Font size reduced */
margin: 0rem;
padding: 0rem;
}
}