mirror of
https://github.com/Unleash/unleash.git
synced 2025-01-25 00:07:47 +01:00
fix: allow overflow for strategy card
This commit is contained in:
parent
57bdf63043
commit
97e11a3a88
@ -233,7 +233,11 @@ class StrategyConfigure extends React.Component {
|
|||||||
const strategyContent = this.renderStrategContent(this.props.strategyDefinition);
|
const strategyContent = this.renderStrategContent(this.props.strategyDefinition);
|
||||||
const { name } = this.props.strategy;
|
const { name } = this.props.strategy;
|
||||||
item = (
|
item = (
|
||||||
<Card shadow={0} className={styles.card} style={{ opacity: isDragging ? '0.1' : '1' }}>
|
<Card
|
||||||
|
shadow={0}
|
||||||
|
className={styles.card}
|
||||||
|
style={{ opacity: isDragging ? '0.1' : '1', overflow: 'visible' }}
|
||||||
|
>
|
||||||
<CardTitle className={styles.cardTitle} title={description}>
|
<CardTitle className={styles.cardTitle} title={description}>
|
||||||
<Icon name="extension" />
|
<Icon name="extension" />
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user