aboutsummaryrefslogtreecommitdiffstats
path: root/packages/instant/src/style/z_index.ts
diff options
context:
space:
mode:
authorFrancesco Agosti <francesco.agosti93@gmail.com>2018-11-09 08:29:34 +0800
committerGitHub <noreply@github.com>2018-11-09 08:29:34 +0800
commit3eac119399d3e2729ce65f748d9fb31207ac2540 (patch)
tree558aa4bb76eae3418cf411fcfba089ef8edf19ef /packages/instant/src/style/z_index.ts
parent117e2f583ff44bdb63340a2134edea0f3ecb77b3 (diff)
parentcd44470a29c48275e6a2a4bba42734d8f900d387 (diff)
downloaddexon-0x-contracts-3eac119399d3e2729ce65f748d9fb31207ac2540.tar.gz
dexon-0x-contracts-3eac119399d3e2729ce65f748d9fb31207ac2540.tar.zst
dexon-0x-contracts-3eac119399d3e2729ce65f748d9fb31207ac2540.zip
Merge pull request #1230 from 0xProject/feature/instant/dropdown-ui
[instant] Dropdown Component Skeleton
Diffstat (limited to 'packages/instant/src/style/z_index.ts')
-rw-r--r--packages/instant/src/style/z_index.ts10
1 files changed, 6 insertions, 4 deletions
diff --git a/packages/instant/src/style/z_index.ts b/packages/instant/src/style/z_index.ts
index 03623f044..bd034182e 100644
--- a/packages/instant/src/style/z_index.ts
+++ b/packages/instant/src/style/z_index.ts
@@ -1,6 +1,8 @@
export const zIndex = {
- errorPopBehind: 1,
- mainContainer: 2,
- panel: 3,
- errorPopUp: 4,
+ errorPopBehind: 10,
+ mainContainer: 20,
+ dropdownItems: 30,
+ panel: 40,
+ errorPopup: 50,
+ overlayDefault: 100,
};