Skip to content

Commit 3cd5b91

Browse files
RI-7687: address PR comments
1 parent df12ae0 commit 3cd5b91

File tree

2 files changed

+5
-4
lines changed
  • redisinsight/ui/src/pages/rdi/pipeline-management

2 files changed

+5
-4
lines changed

redisinsight/ui/src/pages/rdi/pipeline-management/components/jobs-panel/styles.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ export const DryRunPanelContainer = styled(Col)<
77
React.ComponentProps<typeof Col> & { isFullScreen?: boolean }
88
>`
99
border-left: 1px solid
10-
${({ theme }: { theme: Theme }) =>
11-
theme.semantic.color.border.informative100};
12-
padding: 2.4rem;
10+
${({ theme }: { theme: Theme }) =>
11+
theme.semantic.color.border.informative100};
12+
padding: ${({ theme }: { theme: Theme }) => theme.core.space.space300};
1313
background-color: ${({ theme }: { theme: Theme }) =>
1414
theme.components.section.bgColor};
1515
${({ isFullScreen }) =>
Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
import styled from 'styled-components'
22
import { FlexItem } from 'uiSrc/components/base/layout/flex'
3+
import { Theme } from 'uiSrc/components/base/theme/types'
34

45
export const StyledRdiJobConfigContainer = styled(FlexItem)`
5-
padding: 2.4rem;
6+
padding: ${({ theme }: { theme: Theme }) => theme.core.space.space300};
67
`

0 commit comments

Comments
 (0)