fix: settings search field bottom padding (#6920)

## ISSUE 
- Closes #6919
This commit is contained in:
Nabhag Motivaras
2024-09-06 18:43:35 +05:30
committed by GitHub
parent 7205927440
commit c0d0f8d78d
2 changed files with 2 additions and 0 deletions

View File

@ -78,6 +78,7 @@ const SETTINGS_OBJECT_DETAIL_TABLE_METADATA_CUSTOM: TableMetadata<SettingsObject
};
const StyledSearchInput = styled(TextInput)`
padding-bottom: ${({ theme }) => theme.spacing(2)};
width: 100%;
`;
export type SettingsObjectFieldTableProps = {

View File

@ -42,6 +42,7 @@ const StyledIconChevronRight = styled(IconChevronRight)`
color: ${({ theme }) => theme.font.color.tertiary};
`;
const StyledSearchInput = styled(TextInput)`
padding-bottom: ${({ theme }) => theme.spacing(2)};
width: 100%;
`;
export const SettingsObjects = () => {