Skip to content

Commit

Permalink
fix(module:picker): fix picker wrap z-index same as mask (#362)
Browse files Browse the repository at this point in the history
  • Loading branch information
Guoyuanqiang authored and fisherspy committed Mar 27, 2019
1 parent 4a5b43a commit 3f2a83c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion components/picker/picker.component.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<div *ngIf="options.mask" class="am-picker-popup-mask {{maskTransitionName}}" (click)="cancel()"></div>
<div class="am-picker-popup {{transitionName}}" style="z-index: 1001; min-height: 280px">
<div class="am-picker-popup am-picker-popup-wrap {{transitionName}}" style=" min-height: 280px">
<div class="am-picker-popup-content">
<div class="am-picker-popup-body">
<div>
Expand Down
2 changes: 1 addition & 1 deletion components/picker/style/index.less
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
&-wrap {
position: fixed;
overflow: auto;
top: 0;
// top: 0;
right: 0;
bottom: 0;
left: 0;
Expand Down

0 comments on commit 3f2a83c

Please sign in to comment.