Antwortmöglichkeit

This commit is contained in:
2026-06-15 22:41:05 +02:00
parent 86222aa92e
commit efb179dec2
+6 -6
View File
@@ -1,7 +1,7 @@
/* Container für den gesamten articleikel */ /* Container für den gesamten articleikel */
.article-view-container { .article-view-container {
box-sizing: border-box; box-sizing: border-box;
max-width: 900px; /* Angenehme Lesebreite für längere Texte */ max-width: 900px;
margin: 3rem auto; margin: 3rem auto;
padding: 0 2rem; padding: 0 2rem;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif; font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
@@ -105,7 +105,7 @@
cursor: default; cursor: default;
} }
/* Responsive Anpassungen unter 760px (für z.B. Smarticlephones) */ /* Responsive Anpassungen unter 760px */
@media (max-width: 760px) { @media (max-width: 760px) {
.article-view-container { .article-view-container {
margin: 1.5rem auto; margin: 1.5rem auto;
@@ -150,8 +150,8 @@
} }
#comment-content { #comment-content {
width: 100% !important; width: 100%;
min-height: 130px !important; min-height: 130px;
padding: 1rem; padding: 1rem;
border: 1px solid #cbd5e1; border: 1px solid #cbd5e1;
border-radius: 8px; border-radius: 8px;
@@ -162,6 +162,8 @@
#comment-form .button { #comment-form .button {
width: 100%; width: 100%;
}
.reply-button { .reply-button {
display: inline-block; display: inline-block;
margin-top: 0.75rem; margin-top: 0.75rem;
@@ -195,5 +197,3 @@
color: #475569; color: #475569;
font-weight: 600; font-weight: 600;
} }
}