This is an automated email from the ASF dual-hosted git repository.

mintsweet pushed a commit to branch release-v0.21
in repository https://gitbox.apache.org/repos/asf/incubator-devlake.git


The following commit(s) were added to refs/heads/release-v0.21 by this push:
     new 7e96ee3b0 fix: adjust the margin for page layout (#6913) (#6914)
7e96ee3b0 is described below

commit 7e96ee3b06e1bd2765c07487db92f12b44fb41c8
Author: github-actions[bot] 
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Sun Feb 4 18:26:25 2024 +1300

    fix: adjust the margin for page layout (#6913) (#6914)
    
    Co-authored-by: 青湛 <[email protected]>
---
 config-ui/src/components/page-header/styled.ts | 2 +-
 config-ui/src/routes/api-keys/api-keys.tsx     | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/config-ui/src/components/page-header/styled.ts 
b/config-ui/src/components/page-header/styled.ts
index 3dd132e69..297e2dedf 100644
--- a/config-ui/src/components/page-header/styled.ts
+++ b/config-ui/src/components/page-header/styled.ts
@@ -28,7 +28,7 @@ export const Title = styled.div`
 
 export const Description = styled.p`
   margin-top: 12px;
-  margin-bottom: 36px;
+  margin-bottom: 16px;
 `;
 
 export const Content = styled.div``;
diff --git a/config-ui/src/routes/api-keys/api-keys.tsx 
b/config-ui/src/routes/api-keys/api-keys.tsx
index 1ddfaed1f..78bba07d3 100644
--- a/config-ui/src/routes/api-keys/api-keys.tsx
+++ b/config-ui/src/routes/api-keys/api-keys.tsx
@@ -96,7 +96,7 @@ export const ApiKeys = () => {
       breadcrumbs={[{ name: 'API Keys', path: PATHS.APIKEYS() }]}
       description="You can generate and manage your API keys to access the 
DevLake API."
     >
-      <Flex justify="flex-end">
+      <Flex style={{ marginBottom: 16 }} justify="flex-end">
         <Button type="primary" icon={<PlusOutlined />} onClick={() => 
setModal('create')}>
           New API Key
         </Button>

Reply via email to