fix the inline edit button spacing on user page (#19289)

(cherry picked from commit 1360498ff6117b24db3f1c19e38ec16e531c0e12)
This commit is contained in:
Ashish Gupta 2025-01-08 19:42:57 +05:30 committed by OpenMetadata Release Bot
parent fd4efb0c1e
commit 9cec8c5190
3 changed files with 5 additions and 4 deletions

View File

@ -95,5 +95,10 @@
.custom-property-inline-edit-container {
width: 100%;
flex-wrap: wrap;
overflow-x: scroll;
.ant-space-item:first-child {
width: inherit;
}
}

View File

@ -29,7 +29,6 @@ const InlineEdit = ({
}: InlineEditProps) => {
return (
<Space
wrap
className={classNames(className, 'inline-edit-container')}
data-testid="inline-edit-container"
direction={direction}

View File

@ -12,7 +12,4 @@
*/
.inline-edit-container {
width: 100%;
.ant-space-item:first-child {
width: inherit;
}
}