Skip to content

Commit

Permalink
fix(draggable): reduced zIndex to prevent overlapping (#169)
Browse files Browse the repository at this point in the history
  • Loading branch information
roman-rr committed Dec 6, 2021
1 parent ce906e0 commit 6196a4e
Show file tree
Hide file tree
Showing 7 changed files with 10 additions and 12 deletions.
4 changes: 2 additions & 2 deletions dist/cupertino-pane.esm.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* Released under the MIT License
*
* Released on: December 6, 2021
* Released on: December 7, 2021
*/

/*! *****************************************************************************
Expand Down Expand Up @@ -1470,7 +1470,7 @@ class CupertinoPane {
margin-left: auto;
margin-right: auto;
height: 30px;
z-index: 12;
z-index: -1;
top: 0;
bottom: initial;
}
Expand Down
4 changes: 2 additions & 2 deletions dist/cupertino-pane.esm.min.js

Large diffs are not rendered by default.

5 changes: 2 additions & 3 deletions dist/cupertino-pane.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*
* Released under the MIT License
*
* Released on: December 6, 2021
* Released on: December 7, 2021
*/

(function (global, factory) {
Expand Down Expand Up @@ -1476,7 +1476,7 @@
margin-left: auto;
margin-right: auto;
height: 30px;
z-index: 12;
z-index: -1;
top: 0;
bottom: initial;
}
Expand Down Expand Up @@ -1954,4 +1954,3 @@
return CupertinoPane;

}));
//# sourceMappingURL=cupertino-pane.js.map
1 change: 0 additions & 1 deletion dist/cupertino-pane.js.map

This file was deleted.

4 changes: 2 additions & 2 deletions dist/cupertino-pane.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/cupertino-pane.min.js.map

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/cupertino-pane.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ export class CupertinoPane {
margin-left: auto;
margin-right: auto;
height: 30px;
z-index: 12;
z-index: -1;
top: 0;
bottom: initial;
}
Expand Down

0 comments on commit 6196a4e

Please sign in to comment.