mirror of
				https://github.com/open-metadata/OpenMetadata.git
				synced 2025-11-04 04:29:13 +00:00 
			
		
		
		
	MINOR : fix side spacing in setting and other pages (#14957)
* fix side spacing in setting and other pages * minor fix
This commit is contained in:
		
							parent
							
								
									e2db70c389
								
							
						
					
					
						commit
						7849313f84
					
				@ -317,7 +317,7 @@ const AppDetails = () => {
 | 
				
			|||||||
              ),
 | 
					              ),
 | 
				
			||||||
              key: ApplicationTabs.CONFIGURATION,
 | 
					              key: ApplicationTabs.CONFIGURATION,
 | 
				
			||||||
              children: (
 | 
					              children: (
 | 
				
			||||||
                <div>
 | 
					                <div className="p-lg">
 | 
				
			||||||
                  <FormBuilder
 | 
					                  <FormBuilder
 | 
				
			||||||
                    useSelectWidget
 | 
					                    useSelectWidget
 | 
				
			||||||
                    cancelText={t('label.back')}
 | 
					                    cancelText={t('label.back')}
 | 
				
			||||||
@ -342,7 +342,7 @@ const AppDetails = () => {
 | 
				
			|||||||
        ),
 | 
					        ),
 | 
				
			||||||
        key: ApplicationTabs.SCHEDULE,
 | 
					        key: ApplicationTabs.SCHEDULE,
 | 
				
			||||||
        children: (
 | 
					        children: (
 | 
				
			||||||
          <div className="p-y-md">
 | 
					          <div className="p-lg">
 | 
				
			||||||
            {appData && (
 | 
					            {appData && (
 | 
				
			||||||
              <AppSchedule
 | 
					              <AppSchedule
 | 
				
			||||||
                appData={appData}
 | 
					                appData={appData}
 | 
				
			||||||
@ -367,7 +367,7 @@ const AppDetails = () => {
 | 
				
			|||||||
              ),
 | 
					              ),
 | 
				
			||||||
              key: ApplicationTabs.HISTORY,
 | 
					              key: ApplicationTabs.HISTORY,
 | 
				
			||||||
              children: (
 | 
					              children: (
 | 
				
			||||||
                <div className="p-y-md">
 | 
					                <div className="p-lg">
 | 
				
			||||||
                  <AppRunsHistory appData={appData} />
 | 
					                  <AppRunsHistory appData={appData} />
 | 
				
			||||||
                </div>
 | 
					                </div>
 | 
				
			||||||
              ),
 | 
					              ),
 | 
				
			||||||
@ -400,10 +400,9 @@ const AppDetails = () => {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <PageLayoutV1
 | 
					    <PageLayoutV1
 | 
				
			||||||
      className="app-details-page-layout p-0"
 | 
					      className="app-details-page-layout"
 | 
				
			||||||
      pageTitle={t('label.application-plural')}>
 | 
					      pageTitle={t('label.application-plural')}>
 | 
				
			||||||
      <div className="page-container">
 | 
					      <Row className="page-container">
 | 
				
			||||||
        <Row>
 | 
					 | 
				
			||||||
        <Col className="d-flex" flex="auto">
 | 
					        <Col className="d-flex" flex="auto">
 | 
				
			||||||
          <Button
 | 
					          <Button
 | 
				
			||||||
            className="p-0"
 | 
					            className="p-0"
 | 
				
			||||||
@ -445,7 +444,7 @@ const AppDetails = () => {
 | 
				
			|||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
      </Row>
 | 
					      </Row>
 | 
				
			||||||
      <Row>
 | 
					      <Row>
 | 
				
			||||||
          <Col span={24}>
 | 
					        <Col className="page-container" span={24}>
 | 
				
			||||||
          <Space className="app-details-header w-full m-t-md" size={24}>
 | 
					          <Space className="app-details-header w-full m-t-md" size={24}>
 | 
				
			||||||
            <AppLogo appName={appData?.fullyQualifiedName ?? ''} />
 | 
					            <AppLogo appName={appData?.fullyQualifiedName ?? ''} />
 | 
				
			||||||
 | 
					
 | 
				
			||||||
@ -488,10 +487,10 @@ const AppDetails = () => {
 | 
				
			|||||||
            </div>
 | 
					            </div>
 | 
				
			||||||
          </Space>
 | 
					          </Space>
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
          <Col span={24}>
 | 
					        <Col className="p-0" span={24}>
 | 
				
			||||||
          <Tabs
 | 
					          <Tabs
 | 
				
			||||||
            destroyInactiveTabPane
 | 
					            destroyInactiveTabPane
 | 
				
			||||||
              className="app-details-page-tabs"
 | 
					            className="app-details-page-tabs entity-details-page-tabs"
 | 
				
			||||||
            data-testid="tabs"
 | 
					            data-testid="tabs"
 | 
				
			||||||
            items={tabs}
 | 
					            items={tabs}
 | 
				
			||||||
          />
 | 
					          />
 | 
				
			||||||
@ -510,7 +509,6 @@ const AppDetails = () => {
 | 
				
			|||||||
        onCancel={() => setShowDeleteModel(false)}
 | 
					        onCancel={() => setShowDeleteModel(false)}
 | 
				
			||||||
        onConfirm={onConfirmAction}
 | 
					        onConfirm={onConfirmAction}
 | 
				
			||||||
      />
 | 
					      />
 | 
				
			||||||
      </div>
 | 
					 | 
				
			||||||
    </PageLayoutV1>
 | 
					    </PageLayoutV1>
 | 
				
			||||||
  );
 | 
					  );
 | 
				
			||||||
};
 | 
					};
 | 
				
			||||||
 | 
				
			|||||||
@ -35,9 +35,6 @@
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.app-details-page-layout {
 | 
					.app-details-page-layout {
 | 
				
			||||||
  .page-layout-v1-center {
 | 
					 | 
				
			||||||
    padding: 0;
 | 
					 | 
				
			||||||
  }
 | 
					 | 
				
			||||||
  // ****  Lazy Logs ****
 | 
					  // ****  Lazy Logs ****
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .lazy-log-container {
 | 
					  .lazy-log-container {
 | 
				
			||||||
 | 
				
			|||||||
@ -243,7 +243,7 @@ const BotListV1 = ({
 | 
				
			|||||||
      </Col>
 | 
					      </Col>
 | 
				
			||||||
    </Row>
 | 
					    </Row>
 | 
				
			||||||
  ) : (
 | 
					  ) : (
 | 
				
			||||||
    <Row className="page-container" gutter={[16, 16]}>
 | 
					    <Row className="page-container" gutter={[0, 16]}>
 | 
				
			||||||
      <Col span={24}>
 | 
					      <Col span={24}>
 | 
				
			||||||
        <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					        <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
      </Col>
 | 
					      </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -654,7 +654,7 @@ const TeamDetailsV1 = ({
 | 
				
			|||||||
    ) : (
 | 
					    ) : (
 | 
				
			||||||
      <Row
 | 
					      <Row
 | 
				
			||||||
        className="team-list-container"
 | 
					        className="team-list-container"
 | 
				
			||||||
        gutter={[8, 16]}
 | 
					        gutter={[0, 16]}
 | 
				
			||||||
        justify="space-between">
 | 
					        justify="space-between">
 | 
				
			||||||
        <Col span={8}>
 | 
					        <Col span={8}>
 | 
				
			||||||
          <Searchbar
 | 
					          <Searchbar
 | 
				
			||||||
@ -789,7 +789,7 @@ const TeamDetailsV1 = ({
 | 
				
			|||||||
          ),
 | 
					          ),
 | 
				
			||||||
        })
 | 
					        })
 | 
				
			||||||
      ) : (
 | 
					      ) : (
 | 
				
			||||||
        <Row className="roles-and-policy p-md" gutter={[0, 10]}>
 | 
					        <Row className="roles-and-policy p-y-md" gutter={[0, 10]}>
 | 
				
			||||||
          {entityPermissions.EditAll && !isTeamDeleted && (
 | 
					          {entityPermissions.EditAll && !isTeamDeleted && (
 | 
				
			||||||
            <Col className="d-flex justify-end" span={24}>
 | 
					            <Col className="d-flex justify-end" span={24}>
 | 
				
			||||||
              <Button
 | 
					              <Button
 | 
				
			||||||
@ -860,7 +860,7 @@ const TeamDetailsV1 = ({
 | 
				
			|||||||
          ),
 | 
					          ),
 | 
				
			||||||
        })
 | 
					        })
 | 
				
			||||||
      ) : (
 | 
					      ) : (
 | 
				
			||||||
        <Row className="roles-and-policy p-md" gutter={[0, 10]}>
 | 
					        <Row className="roles-and-policy p-y-md" gutter={[0, 10]}>
 | 
				
			||||||
          {entityPermissions.EditAll && !isTeamDeleted && (
 | 
					          {entityPermissions.EditAll && !isTeamDeleted && (
 | 
				
			||||||
            <Col className="d-flex justify-end" span={24}>
 | 
					            <Col className="d-flex justify-end" span={24}>
 | 
				
			||||||
              <Button
 | 
					              <Button
 | 
				
			||||||
@ -1035,7 +1035,7 @@ const TeamDetailsV1 = ({
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  const tabsChildrenRender = useCallback(
 | 
					  const tabsChildrenRender = useCallback(
 | 
				
			||||||
    (key: TeamsPageTab) => (
 | 
					    (key: TeamsPageTab) => (
 | 
				
			||||||
      <Row className="teams-tabs-content-container">
 | 
					      <Row className="teams-tabs-content-container p-x-lg">
 | 
				
			||||||
        <Col className="teams-scroll-component" span={previewAsset ? 18 : 24}>
 | 
					        <Col className="teams-scroll-component" span={previewAsset ? 18 : 24}>
 | 
				
			||||||
          {isFetchingAdvancedDetails ? <Loader /> : getTabChildren(key)}
 | 
					          {isFetchingAdvancedDetails ? <Loader /> : getTabChildren(key)}
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
@ -1104,16 +1104,16 @@ const TeamDetailsV1 = ({
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <div className="teams-layout page-container">
 | 
					    <div className="teams-layout">
 | 
				
			||||||
      <Row className="h-full" data-testid="team-details-container">
 | 
					      <Row className="h-full" data-testid="team-details-container">
 | 
				
			||||||
        {isOrganization && (
 | 
					        {isOrganization && (
 | 
				
			||||||
          <Col className="p-x-md p-y-sm" span={24}>
 | 
					          <Col className="p-x-lg p-y-sm" span={24}>
 | 
				
			||||||
            <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					            <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
          </Col>
 | 
					          </Col>
 | 
				
			||||||
        )}
 | 
					        )}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
        <Col
 | 
					        <Col
 | 
				
			||||||
          className="teams-profile-container"
 | 
					          className="teams-profile-container p-x-lg"
 | 
				
			||||||
          data-testid="team-detail-header"
 | 
					          data-testid="team-detail-header"
 | 
				
			||||||
          span={24}>
 | 
					          span={24}>
 | 
				
			||||||
          <Collapse
 | 
					          <Collapse
 | 
				
			||||||
 | 
				
			|||||||
@ -339,7 +339,7 @@ export const UserTab = ({
 | 
				
			|||||||
  }
 | 
					  }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <Row className="p-md" gutter={[16, 16]}>
 | 
					    <Row className="p-y-md" gutter={[0, 16]}>
 | 
				
			||||||
      <Col span={24}>
 | 
					      <Col span={24}>
 | 
				
			||||||
        <Row justify="space-between">
 | 
					        <Row justify="space-between">
 | 
				
			||||||
          <Col span={8}>
 | 
					          <Col span={8}>
 | 
				
			||||||
 | 
				
			|||||||
@ -14,7 +14,7 @@
 | 
				
			|||||||
@import url('../../../styles/variables.less');
 | 
					@import url('../../../styles/variables.less');
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.team-list-container {
 | 
					.team-list-container {
 | 
				
			||||||
  padding: 20px;
 | 
					  padding: 20px 0;
 | 
				
			||||||
  .ant-btn {
 | 
					  .ant-btn {
 | 
				
			||||||
    border-radius: 4px;
 | 
					    border-radius: 4px;
 | 
				
			||||||
  }
 | 
					  }
 | 
				
			||||||
@ -78,7 +78,7 @@
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.teams-layout {
 | 
					.teams-layout {
 | 
				
			||||||
  margin: -16px -16px 0 -16px;
 | 
					  margin: -12px 0;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
  .ant-card-head-title {
 | 
					  .ant-card-head-title {
 | 
				
			||||||
    padding-top: 0;
 | 
					    padding-top: 0;
 | 
				
			||||||
@ -96,6 +96,10 @@
 | 
				
			|||||||
      background: none;
 | 
					      background: none;
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					    .ant-collapse-header {
 | 
				
			||||||
 | 
					      padding-left: 0;
 | 
				
			||||||
 | 
					    }
 | 
				
			||||||
 | 
					
 | 
				
			||||||
    .ant-collapse-arrow {
 | 
					    .ant-collapse-arrow {
 | 
				
			||||||
      top: 35px !important; // overriding from antd
 | 
					      top: 35px !important; // overriding from antd
 | 
				
			||||||
    }
 | 
					    }
 | 
				
			||||||
 | 
				
			|||||||
@ -133,7 +133,7 @@ const ApplicationPage = () => {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <PageLayoutV1 pageTitle={t('label.application-plural')}>
 | 
					    <PageLayoutV1 pageTitle={t('label.application-plural')}>
 | 
				
			||||||
      <Row className="page-container" gutter={[16, 16]}>
 | 
					      <Row className="page-container" gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
@ -141,7 +141,7 @@ const ApplicationPage = () => {
 | 
				
			|||||||
          <PageHeader data={PAGE_HEADERS.APPLICATION} />
 | 
					          <PageHeader data={PAGE_HEADERS.APPLICATION} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
        <Col className="d-flex justify-end" span={8}>
 | 
					        <Col className="d-flex justify-end" span={8}>
 | 
				
			||||||
          <Space>
 | 
					          <Space size="middle">
 | 
				
			||||||
            <div>
 | 
					            <div>
 | 
				
			||||||
              <Switch
 | 
					              <Switch
 | 
				
			||||||
                checked={showDisabled}
 | 
					                checked={showDisabled}
 | 
				
			||||||
@ -161,7 +161,7 @@ const ApplicationPage = () => {
 | 
				
			|||||||
          </Space>
 | 
					          </Space>
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
      </Row>
 | 
					      </Row>
 | 
				
			||||||
      <Row className="m-t-lg">
 | 
					      <Row className="page-container m-t-lg">
 | 
				
			||||||
        {isLoading &&
 | 
					        {isLoading &&
 | 
				
			||||||
          [1, 2].map((key) => (
 | 
					          [1, 2].map((key) => (
 | 
				
			||||||
            <Col key={key} span={12}>
 | 
					            <Col key={key} span={12}>
 | 
				
			||||||
 | 
				
			|||||||
@ -89,7 +89,7 @@ const LoginConfigurationPage = () => {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <PageLayoutV1 pageTitle={t('label.login')}>
 | 
					    <PageLayoutV1 pageTitle={t('label.login')}>
 | 
				
			||||||
      <Row className="page-container" gutter={[16, 16]}>
 | 
					      <Row className="page-container" gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -96,7 +96,7 @@ const CustomLogoConfigSettingsPage = () => {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <PageLayoutV1 pageTitle={t('label.custom-logo')}>
 | 
					    <PageLayoutV1 pageTitle={t('label.custom-logo')}>
 | 
				
			||||||
      <Row align="middle" className="page-container" gutter={[16, 16]}>
 | 
					      <Row align="middle" className="page-container" gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -155,7 +155,7 @@ export const CustomPageSettings = () => {
 | 
				
			|||||||
      <Row
 | 
					      <Row
 | 
				
			||||||
        className="customize-landing-page user-listing p-b-md page-container"
 | 
					        className="customize-landing-page user-listing p-b-md page-container"
 | 
				
			||||||
        data-testid="custom-page-setting-component"
 | 
					        data-testid="custom-page-setting-component"
 | 
				
			||||||
        gutter={[16, 16]}>
 | 
					        gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -269,9 +269,9 @@ const CustomEntityDetailV1 = () => {
 | 
				
			|||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <PageLayoutV1 pageTitle={t('label.custom-property')}>
 | 
					    <PageLayoutV1 pageTitle={t('label.custom-property')}>
 | 
				
			||||||
      <Row
 | 
					      <Row
 | 
				
			||||||
        className="m-y-xs page-container"
 | 
					        className="page-container"
 | 
				
			||||||
        data-testid="custom-entity-container"
 | 
					        data-testid="custom-entity-container"
 | 
				
			||||||
        gutter={[16, 16]}>
 | 
					        gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -157,7 +157,7 @@ function EmailConfigSettingsPage() {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <PageLayoutV1 pageTitle={t('label.email')}>
 | 
					    <PageLayoutV1 pageTitle={t('label.email')}>
 | 
				
			||||||
      <Row align="middle" className="page-container" gutter={[16, 16]}>
 | 
					      <Row align="middle" className="page-container" gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -211,7 +211,7 @@ const NotificationListPage = () => {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <PageLayoutV1 pageTitle={t('label.alert-plural')}>
 | 
					    <PageLayoutV1 pageTitle={t('label.alert-plural')}>
 | 
				
			||||||
      <Row className="page-container" gutter={[16, 16]}>
 | 
					      <Row className="page-container" gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -312,7 +312,7 @@ function ObservabilityAlertDetailsPage({
 | 
				
			|||||||
            data-testid="alert-details-container">
 | 
					            data-testid="alert-details-container">
 | 
				
			||||||
            <Row
 | 
					            <Row
 | 
				
			||||||
              className="add-notification-container p-x-lg p-t-md"
 | 
					              className="add-notification-container p-x-lg p-t-md"
 | 
				
			||||||
              gutter={[16, 16]}>
 | 
					              gutter={[0, 16]}>
 | 
				
			||||||
              <Col span={24}>
 | 
					              <Col span={24}>
 | 
				
			||||||
                <TitleBreadcrumb titleLinks={breadcrumb} />
 | 
					                <TitleBreadcrumb titleLinks={breadcrumb} />
 | 
				
			||||||
              </Col>
 | 
					              </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -196,7 +196,7 @@ const ObservabilityAlertsPage = () => {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <PageLayoutV1 pageTitle={t('label.alert-plural')}>
 | 
					    <PageLayoutV1 pageTitle={t('label.alert-plural')}>
 | 
				
			||||||
      <Row className="p-x-lg p-t-md" gutter={[16, 16]}>
 | 
					      <Row className="p-x-lg p-t-md" gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <div className="d-flex justify-between">
 | 
					          <div className="d-flex justify-between">
 | 
				
			||||||
            <PageHeader data={pageHeaderData} />
 | 
					            <PageHeader data={pageHeaderData} />
 | 
				
			||||||
 | 
				
			|||||||
@ -173,7 +173,7 @@ export const PersonaDetailsPage = () => {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  return (
 | 
					  return (
 | 
				
			||||||
    <PageLayoutV1 pageTitle={personaDetails.name}>
 | 
					    <PageLayoutV1 pageTitle={personaDetails.name}>
 | 
				
			||||||
      <Row className="m-b-md page-container" gutter={[16, 16]}>
 | 
					      <Row className="m-b-md page-container" gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <div className="d-flex justify-between items-start">
 | 
					          <div className="d-flex justify-between items-start">
 | 
				
			||||||
            <PageHeader
 | 
					            <PageHeader
 | 
				
			||||||
 | 
				
			|||||||
@ -132,7 +132,7 @@ export const PersonaPage = () => {
 | 
				
			|||||||
      <Row
 | 
					      <Row
 | 
				
			||||||
        className="user-listing page-container p-b-md"
 | 
					        className="user-listing page-container p-b-md"
 | 
				
			||||||
        data-testid="user-list-v1-component"
 | 
					        data-testid="user-list-v1-component"
 | 
				
			||||||
        gutter={[16, 16]}>
 | 
					        gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -265,7 +265,7 @@ const PoliciesListPage = () => {
 | 
				
			|||||||
      <Row
 | 
					      <Row
 | 
				
			||||||
        className="policies-list-container page-container"
 | 
					        className="policies-list-container page-container"
 | 
				
			||||||
        data-testid="policies-list-container"
 | 
					        data-testid="policies-list-container"
 | 
				
			||||||
        gutter={[16, 16]}>
 | 
					        gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -263,7 +263,7 @@ const RolesListPage = () => {
 | 
				
			|||||||
      <Row
 | 
					      <Row
 | 
				
			||||||
        className="roles-list-container page-container"
 | 
					        className="roles-list-container page-container"
 | 
				
			||||||
        data-testid="roles-list-container"
 | 
					        data-testid="roles-list-container"
 | 
				
			||||||
        gutter={[16, 16]}>
 | 
					        gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -71,7 +71,7 @@ const ServicesPage = () => {
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
  return viewAllPermission ? (
 | 
					  return viewAllPermission ? (
 | 
				
			||||||
    <PageLayoutV1 pageTitle={serviceName}>
 | 
					    <PageLayoutV1 pageTitle={serviceName}>
 | 
				
			||||||
      <Row className="page-container" gutter={[16, 16]}>
 | 
					      <Row className="page-container" gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -332,7 +332,7 @@ const TestSuiteDetailsPage = () => {
 | 
				
			|||||||
      pageTitle={t('label.entity-detail-plural', {
 | 
					      pageTitle={t('label.entity-detail-plural', {
 | 
				
			||||||
        entity: getEntityName(testSuite),
 | 
					        entity: getEntityName(testSuite),
 | 
				
			||||||
      })}>
 | 
					      })}>
 | 
				
			||||||
      <Row className="page-container" gutter={[16, 32]}>
 | 
					      <Row className="page-container" gutter={[0, 32]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <Space align="center" className="justify-between w-full">
 | 
					          <Space align="center" className="justify-between w-full">
 | 
				
			||||||
            <TitleBreadcrumb
 | 
					            <TitleBreadcrumb
 | 
				
			||||||
 | 
				
			|||||||
@ -395,7 +395,7 @@ const UserListPageV1 = () => {
 | 
				
			|||||||
      <Row
 | 
					      <Row
 | 
				
			||||||
        className="user-listing p-b-md page-container"
 | 
					        className="user-listing p-b-md page-container"
 | 
				
			||||||
        data-testid="user-list-v1-component"
 | 
					        data-testid="user-list-v1-component"
 | 
				
			||||||
        gutter={[16, 16]}>
 | 
					        gutter={[0, 16]}>
 | 
				
			||||||
        <Col span={24}>
 | 
					        <Col span={24}>
 | 
				
			||||||
          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
					          <TitleBreadcrumb titleLinks={breadcrumbs} />
 | 
				
			||||||
        </Col>
 | 
					        </Col>
 | 
				
			||||||
 | 
				
			|||||||
@ -81,7 +81,7 @@ p {
 | 
				
			|||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
.page-container {
 | 
					.page-container {
 | 
				
			||||||
  padding: 4px 16px 16px;
 | 
					  padding: 0 24px;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
a,
 | 
					a,
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user