From f54c0663f299bf19fddaa2ed6bd4fce66a2efc07 Mon Sep 17 00:00:00 2001 From: Pavel Angelov Date: Thu, 7 Aug 2025 14:03:47 +0300 Subject: [PATCH] fix spaces --- .../ui/src/pages/vector-search/create-index/steps/styles.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/redisinsight/ui/src/pages/vector-search/create-index/steps/styles.ts b/redisinsight/ui/src/pages/vector-search/create-index/steps/styles.ts index dc03ac1bd9..e320484367 100644 --- a/redisinsight/ui/src/pages/vector-search/create-index/steps/styles.ts +++ b/redisinsight/ui/src/pages/vector-search/create-index/steps/styles.ts @@ -31,7 +31,9 @@ export const CreateIndexStepScreenWrapper = styled.div` export const CodeBlocKWrapper = styled.div` overflow: auto; height: 100%; - padding: ${({ theme }) => theme.core.space.space300}; + padding: 0; + /* TODO: Remove this when can be styled with styled() */ + padding-top: ${({ theme }) => theme.core.space.space100}; border: 1px solid; border-color: ${({ theme }) => theme.color.dusk200};