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 */
.article-view-container {
box-sizing: border-box;
max-width: 900px; /* Angenehme Lesebreite für längere Texte */
max-width: 900px;
margin: 3rem auto;
padding: 0 2rem;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
@@ -105,7 +105,7 @@
cursor: default;
}
/* Responsive Anpassungen unter 760px (für z.B. Smarticlephones) */
/* Responsive Anpassungen unter 760px */
@media (max-width: 760px) {
.article-view-container {
margin: 1.5rem auto;
@@ -150,8 +150,8 @@
}
#comment-content {
width: 100% !important;
min-height: 130px !important;
width: 100%;
min-height: 130px;
padding: 1rem;
border: 1px solid #cbd5e1;
border-radius: 8px;
@@ -162,6 +162,8 @@
#comment-form .button {
width: 100%;
}
.reply-button {
display: inline-block;
margin-top: 0.75rem;
@@ -195,5 +197,3 @@
color: #475569;
font-weight: 600;
}
}