Skip to content

Commit 92819f5

Browse files
authored
RI-7299: Fix "Command preview" spacing (#4825)
1 parent d7c6562 commit 92819f5

File tree

1 file changed

+3
-1
lines changed
  • redisinsight/ui/src/pages/vector-search/create-index/steps

1 file changed

+3
-1
lines changed

redisinsight/ui/src/pages/vector-search/create-index/steps/styles.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,9 @@ export const CreateIndexStepScreenWrapper = styled.div`
3131
export const CodeBlocKWrapper = styled.div`
3232
overflow: auto;
3333
height: 100%;
34-
padding: ${({ theme }) => theme.core.space.space300};
34+
padding: 0;
35+
/* TODO: Remove this when <CodeBlock /> can be styled with styled() */
36+
padding-top: ${({ theme }) => theme.core.space.space100};
3537
3638
border: 1px solid;
3739
border-color: ${({ theme }) => theme.color.dusk200};

0 commit comments

Comments
 (0)