1
0
mirror of synced 2025-12-23 03:44:00 -05:00
Files
docs/components/parameter-table/ChildBodyParametersRows.module.scss
2022-09-20 12:57:49 -07:00

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;
}
}
}