mirror of
https://github.com/Unleash/unleash.git
synced 2025-04-10 01:16:39 +02:00
Fix PR commments
This commit is contained in:
parent
e8a77d4928
commit
8f4f1f6f5f
@ -6,7 +6,7 @@ interface IContextBannerProps {
|
|||||||
context: SdkContextSchema;
|
context: SdkContextSchema;
|
||||||
}
|
}
|
||||||
|
|
||||||
const StyledContextFieldList = styled('ul')(({theme}) => ({
|
const StyledContextFieldList = styled('ul')(({ theme }) => ({
|
||||||
color: colors.black,
|
color: colors.black,
|
||||||
listStyleType: 'none',
|
listStyleType: 'none',
|
||||||
paddingInlineStart: theme.spacing(16),
|
paddingInlineStart: theme.spacing(16),
|
||||||
|
@ -10,7 +10,7 @@ interface IFeatureStatusCellProps {
|
|||||||
enabled: boolean;
|
enabled: boolean;
|
||||||
}
|
}
|
||||||
|
|
||||||
const StyledFalseChip = styled(Chip)(({theme}) => ({
|
const StyledFalseChip = styled(Chip)(({ theme }) => ({
|
||||||
width: 80,
|
width: 80,
|
||||||
borderRadius: '5px',
|
borderRadius: '5px',
|
||||||
border: `1px solid ${theme.palette.error.main}`,
|
border: `1px solid ${theme.palette.error.main}`,
|
||||||
@ -23,7 +23,7 @@ const StyledFalseChip = styled(Chip)(({theme}) => ({
|
|||||||
},
|
},
|
||||||
}));
|
}));
|
||||||
|
|
||||||
const StyledTrueChip = styled(Chip)(({theme}) => ({
|
const StyledTrueChip = styled(Chip)(({ theme }) => ({
|
||||||
width: 80,
|
width: 80,
|
||||||
borderRadius: '5px',
|
borderRadius: '5px',
|
||||||
border: `1px solid ${theme.palette.success.main}`,
|
border: `1px solid ${theme.palette.success.main}`,
|
||||||
|
Loading…
Reference in New Issue
Block a user