Template:Pseudoforum/styles.css: Difference between revisions
Template page
More actions
Content deleted Content added
Tesinormed (talk | contribs) Created page with ".pseudoforum { display: flex; flex-direction: column; gap: var(--space-md); width: 100%; overflow: scroll; }" |
Tesinormed (talk | contribs) No edit summary |
||
| Line 5: | Line 5: | ||
width: 100%; |
width: 100%; |
||
overflow: scroll; |
overflow: scroll; |
||
} |
|||
.pseudoforum-entry { |
|||
background: var(--color-surface-1); |
|||
border: var(--border-base); |
|||
padding: var(--space-sm); |
|||
} |
|||
.pseudoforum-entry-title .mw-heading { |
|||
margin: 0; |
|||
} |
|||
.pseudoforum-entry-content p:first-child { |
|||
margin-block-start: 0; |
|||
} |
|||
.pseudoforum-entry-content p:last-child { |
|||
margin-block-end: 0; |
|||
} |
} |
||
Revision as of 06:16, May 26, 2025
.pseudoforum {
display: flex;
flex-direction: column;
gap: var(--space-md);
width: 100%;
overflow: scroll;
}
.pseudoforum-entry {
background: var(--color-surface-1);
border: var(--border-base);
padding: var(--space-sm);
}
.pseudoforum-entry-title .mw-heading {
margin: 0;
}
.pseudoforum-entry-content p:first-child {
margin-block-start: 0;
}
.pseudoforum-entry-content p:last-child {
margin-block-end: 0;
}