Skip to content

Commit 4580012

Browse files
authored
RI-7289: adjust Create Index wizard spacing to match style of Workbench/Browser (#4824)
1 parent f105408 commit 4580012

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

redisinsight/ui/src/pages/vector-search/query/HeaderActions.styles.ts

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,13 @@ export const StyledHeaderAction = styled(FlexGroup)`
66
display: flex;
77
flex-direction: row;
88
justify-content: flex-end;
9-
margin-bottom: ${({ theme }) => theme.core.space.space200};
9+
gap: ${({ theme }) => theme.core.space.space100};
10+
margin-bottom: ${({ theme }) => theme.core.space.space100};
1011
`
1112

1213
export const StyledTextButton = styled(TextButton)`
14+
padding: 0px;
15+
height: auto;
1316
color: ${({ theme }) => theme.color.blue400};
1417
&:hover {
1518
color: ${({ theme }) => theme.color.blue500};

redisinsight/ui/src/pages/vector-search/styles.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ import { FlexGroup, FlexItem } from 'uiSrc/components/base/layout/flex'
44
export const VectorSearchPageWrapper = styled.div`
55
background-color: ${({ theme }) =>
66
theme.semantic?.color.background.neutral100};
7-
padding: ${({ theme }) => theme.core?.space.space200};
7+
padding-left: ${({ theme }) => theme.core?.space.space200};
8+
padding-right: ${({ theme }) => theme.core?.space.space200};
89
910
display: flex;
1011
height: 100%;

0 commit comments

Comments
 (0)