22 lines
593 B
SCSS
22 lines
593 B
SCSS
.childBodyParametersRows {
|
|
details tr {
|
|
border-top: none;
|
|
}
|
|
|
|
// Remove any default markdown article padding for property cells
|
|
details tr td {
|
|
padding-bottom: 0.25rem;
|
|
}
|
|
|
|
// Set the left border for in the nested property tables. Also need to override
|
|
// a default markdown file style that sets a table's font size based on
|
|
// percentage which would cause the table font size to shrink more and more
|
|
// as the properties nested more and more.
|
|
td {
|
|
table {
|
|
border-left: 4px solid var(--color-border-muted);
|
|
font-size: inherit !important;
|
|
}
|
|
}
|
|
}
|