Skip to content

Commit

Permalink
fix(frontend): fix ui spacing in layout and wizard (#3648)
Browse files Browse the repository at this point in the history
  • Loading branch information
jorgeepc committed Feb 15, 2024
1 parent 2ab2779 commit 1fbdc56
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
1 change: 1 addition & 0 deletions web/src/components/Layout/Layout.styled.ts
Expand Up @@ -4,6 +4,7 @@ import styled, {css} from 'styled-components';
export const Content = styled(LayoutAntd.Content)<{$hasMenu: boolean}>`
display: flex;
flex-direction: column;
padding-bottom: 40px;
${({$hasMenu}) =>
$hasMenu &&
Expand Down
Expand Up @@ -54,7 +54,7 @@ export const CardList = styled.div`
display: flex;
flex-wrap: wrap;
gap: 16px;
margin-bottom: 48px;
margin-bottom: 24px;
`;

export const IntegrationCardList = styled(CardList)`
Expand Down
Expand Up @@ -2,10 +2,9 @@ import {Typography} from 'antd';
import styled from 'styled-components';

export const ButtonContainer = styled.div`
margin-top: 44px;
display: flex;
justify-content: flex-end;
margin-top: 4px;
`;

export const TabText = styled(Typography.Text)`
Expand Down

0 comments on commit 1fbdc56

Please sign in to comment.