On .fa-component increase top and bottom padding (to 1rem and .5rem) to not visually crowd text to top of container. This does not add too much space in long or deeply nested items.
|
.fa-component { |
|
background-color: var(--color-blue-gray); |
|
padding-top: 0; |
|
padding-bottom: 0; |
|
} |
Replace with:
.fa-component {
background-color: var(--color-blue-gray);
padding-top: 1rem;
padding-bottom: .5rem;
}
Screenshots

On .fa-component increase top and bottom padding (to
1remand.5rem) to not visually crowd text to top of container. This does not add too much space in long or deeply nested items.findingaid/app/Assets/css/extra.css
Lines 59 to 63 in ecd1dd3
Replace with:
Screenshots