mirror of
https://github.com/StarCitizenTools/mediawiki-skins-Citizen.git
synced 2024-11-28 08:10:45 +00:00
fix(core): 🐛 fix uneven margin in table cells
This commit is contained in:
parent
dad5c26e02
commit
9baf8510ce
|
@ -86,12 +86,18 @@ th {
|
|||
color: var( --color-emphasized );
|
||||
}
|
||||
|
||||
/* Remove outer margin in table cell */
|
||||
th,
|
||||
td {
|
||||
> p,
|
||||
> ul,
|
||||
> ol {
|
||||
&:first-child {
|
||||
margin-top: 0; // Remove margin for the first element in td
|
||||
margin-top: 0;
|
||||
}
|
||||
|
||||
&:last-child {
|
||||
margin-bottom: 0
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue