User:Vergir/teststyles: Difference between revisions

From The Deadlock Wiki
Jump to navigation Jump to search
Vergir (talk | contribs)
Add conversation table test styles: paragraph spacing between speaker lines (with help from vergir-bot LLM)
Vergir (talk | contribs)
mNo edit summary
Line 2: Line 2:
   Each dialogue line is its own paragraph (blank-line separated in wikitext). */
   Each dialogue line is its own paragraph (blank-line separated in wikitext). */
.conversation-table td p {
.conversation-table td p {
     margin: 0 0 0.5em;
     margin: 0;
    margin-bottom: 0.5em;
}
}



Revision as of 19:17, 21 August 2026

/* Conversation table test: spacing between speaker lines.
   Each dialogue line is its own paragraph (blank-line separated in wikitext). */
.conversation-table td p {
    margin: 0;
    margin-bottom: 0.5em;
}

.conversation-table td p:last-child {
    margin-bottom: 0;
}