mirror of
https://github.com/Unleash/unleash.git
synced 2024-12-22 19:07:54 +01:00
bug fix
This commit is contained in:
parent
47c33e62e1
commit
d617eaaefc
@ -86,12 +86,6 @@ export const useStyles = makeStyles()(theme => ({
|
|||||||
top: '-10px',
|
top: '-10px',
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
help: {
|
|
||||||
fill: theme.palette.grey[600],
|
|
||||||
[theme.breakpoints.down(860)]: {
|
|
||||||
display: 'none',
|
|
||||||
},
|
|
||||||
},
|
|
||||||
headerText: {
|
headerText: {
|
||||||
maxWidth: '400px',
|
maxWidth: '400px',
|
||||||
fontSize: theme.fontSizes.smallBody,
|
fontSize: theme.fontSizes.smallBody,
|
||||||
|
@ -6,4 +6,10 @@ export const useStyles = makeStyles()(theme => ({
|
|||||||
display: 'grid',
|
display: 'grid',
|
||||||
gap: '1rem',
|
gap: '1rem',
|
||||||
},
|
},
|
||||||
|
help: {
|
||||||
|
fill: theme.palette.grey[600],
|
||||||
|
[theme.breakpoints.down(860)]: {
|
||||||
|
display: 'none',
|
||||||
|
},
|
||||||
|
},
|
||||||
}));
|
}));
|
||||||
|
@ -8,7 +8,7 @@ import { objectId } from 'utils/objectId';
|
|||||||
import { useStyles } from './ConstraintAccordionList.styles';
|
import { useStyles } from './ConstraintAccordionList.styles';
|
||||||
import { createEmptyConstraint } from 'component/common/ConstraintAccordion/ConstraintAccordionList/createEmptyConstraint';
|
import { createEmptyConstraint } from 'component/common/ConstraintAccordion/ConstraintAccordionList/createEmptyConstraint';
|
||||||
import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender';
|
import { ConditionallyRender } from 'component/common/ConditionallyRender/ConditionallyRender';
|
||||||
import { Button, IconButton } from '@mui/material';
|
import { Button } from '@mui/material';
|
||||||
import { Help } from '@mui/icons-material';
|
import { Help } from '@mui/icons-material';
|
||||||
|
|
||||||
interface IConstraintAccordionListProps {
|
interface IConstraintAccordionListProps {
|
||||||
@ -109,10 +109,10 @@ export const ConstraintAccordionList = forwardRef<
|
|||||||
href={
|
href={
|
||||||
'https://docs.getunleash.io/advanced/strategy_constraints'
|
'https://docs.getunleash.io/advanced/strategy_constraints'
|
||||||
}
|
}
|
||||||
|
target="_blank"
|
||||||
|
rel="noopener noreferrer"
|
||||||
>
|
>
|
||||||
<IconButton>
|
<Help className={styles.help} />
|
||||||
<Help />
|
|
||||||
</IconButton>
|
|
||||||
</a>
|
</a>
|
||||||
</p>
|
</p>
|
||||||
<Button
|
<Button
|
||||||
|
Loading…
Reference in New Issue
Block a user