fix: settings search field bottom padding (#6920)
## ISSUE - Closes #6919
This commit is contained in:
@ -78,6 +78,7 @@ const SETTINGS_OBJECT_DETAIL_TABLE_METADATA_CUSTOM: TableMetadata<SettingsObject
|
|||||||
};
|
};
|
||||||
|
|
||||||
const StyledSearchInput = styled(TextInput)`
|
const StyledSearchInput = styled(TextInput)`
|
||||||
|
padding-bottom: ${({ theme }) => theme.spacing(2)};
|
||||||
width: 100%;
|
width: 100%;
|
||||||
`;
|
`;
|
||||||
export type SettingsObjectFieldTableProps = {
|
export type SettingsObjectFieldTableProps = {
|
||||||
|
|||||||
@ -42,6 +42,7 @@ const StyledIconChevronRight = styled(IconChevronRight)`
|
|||||||
color: ${({ theme }) => theme.font.color.tertiary};
|
color: ${({ theme }) => theme.font.color.tertiary};
|
||||||
`;
|
`;
|
||||||
const StyledSearchInput = styled(TextInput)`
|
const StyledSearchInput = styled(TextInput)`
|
||||||
|
padding-bottom: ${({ theme }) => theme.spacing(2)};
|
||||||
width: 100%;
|
width: 100%;
|
||||||
`;
|
`;
|
||||||
export const SettingsObjects = () => {
|
export const SettingsObjects = () => {
|
||||||
|
|||||||
Reference in New Issue
Block a user