OpionsPane: Minor padding fix (#103337)

This commit is contained in:
Torkel Ödegaard
2025-04-03 12:45:40 +03:00
committed by GitHub
parent 1ef4a1a4ab
commit 4fffc3adaf
@@ -61,7 +61,7 @@ export class OptionsPaneCategoryDescriptor {
if (this.props.title === '') {
return (
<Box padding={2} key={this.props.title}>
<Box padding={2} paddingBottom={1} key={this.props.title}>
{this.items.map((item) => item.render(searchQuery))}
</Box>
);