File tree Expand file tree Collapse file tree 2 files changed +5
-4
lines changed
redisinsight/ui/src/pages/rdi/pipeline-management Expand file tree Collapse file tree 2 files changed +5
-4
lines changed Original file line number Diff line number Diff 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 } ) =>
Original file line number Diff line number Diff line change 11import styled from 'styled-components'
22import { FlexItem } from 'uiSrc/components/base/layout/flex'
3+ import { Theme } from 'uiSrc/components/base/theme/types'
34
45export const StyledRdiJobConfigContainer = styled ( FlexItem ) `
5- padding: 2.4rem ;
6+ padding: ${ ( { theme } : { theme : Theme } ) => theme . core . space . space300 } ;
67`
You can’t perform that action at this time.
0 commit comments