fixed some styling issues (#19230)

* fixed some styling issues

* correct style update

---------

Co-authored-by: Aniket Katkar <aniketkatkar97@gmail.com>
This commit is contained in:
Rushikesh Bunge 2025-01-08 11:28:09 +05:30 committed by GitHub
parent e32ad88c81
commit 15d004b725
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 4 additions and 2 deletions

View File

@ -241,7 +241,7 @@ const SearchDropdown: FC<SearchDropdownProps> = ({
bodyStyle={{ padding: 0 }}
className="custom-dropdown-render"
data-testid="drop-down-menu">
<Space direction="vertical" size={0}>
<Space className="w-full" direction="vertical" size={0}>
<div className="p-t-sm p-x-sm">
<Input
autoFocus

View File

@ -301,7 +301,9 @@ const TopicSchemaFields: FC<TopicSchemaFieldsProps> = ({
<Typography.Text type="secondary">
{t('label.schema')}
</Typography.Text>
{schemaTypePlaceholder ?? <Tag>{messageSchema.schemaType}</Tag>}
{schemaTypePlaceholder ?? (
<Tag className="ml-4">{messageSchema.schemaType}</Tag>
)}
</Col>
)}
{isEmpty(messageSchema?.schemaFields) &&