Skip to content

Commit

Permalink
Fix z-index issue in only-continue-if selector in scene action (#1947)
Browse files Browse the repository at this point in the history
  • Loading branch information
William-De71 authored Nov 27, 2023
1 parent 7562a3d commit 6a14da3
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,6 @@
align-items: center;
}

.deviceSelector {
z-index: 10;
}

.explanationText {
font-size: 12px;
margin-bottom: .375rem;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@ import { Component } from 'preact';
import { Text, Localizer } from 'preact-i18n';
import Select from 'react-select';
import update from 'immutability-helper';
import cx from 'classnames';

import TextWithVariablesInjected from '../../../../../components/scene/TextWithVariablesInjected';

Expand Down Expand Up @@ -76,7 +75,6 @@ class Condition extends Component {
</label>
<Select
defaultValue={''}
className={cx(style.deviceSelector)}
value={selectedOption}
onChange={this.handleChange}
options={props.variableOptions}
Expand Down

0 comments on commit 6a14da3

Please sign in to comment.