fixes TimeZone dropdown position: relative issue

This commit is contained in:
Toni Dezman 2017-08-17 11:41:24 +02:00
parent 3e6d45e82f
commit 3c20ef5fea
2 changed files with 7 additions and 3 deletions

View file

@ -33,7 +33,7 @@ class InputTimezone extends Component {
{this.props.labelValue}
</h4>
<TimezonePicker
absolute
absolute={false}
defaultValue="Europe/London"
value={this.props.inputValue}
placeholder="Select timezone..."

View file

@ -9,12 +9,16 @@ body {
.time-zone-container {
background: $color-white;
position: relative;
ul {
width: 100%;
width: 99%;
height: 70vh;
overflow: auto;
position: relative;
position: absolute;
top: 35px;
padding-left: 5px;
background: $color-white;
z-index: 9999;
}
li {