diff options
author | Steve Klebanoff <steve@0xproject.com> | 2018-11-09 07:37:56 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-09 07:37:56 +0800 |
commit | 117e2f583ff44bdb63340a2134edea0f3ecb77b3 (patch) | |
tree | 9d7552953145bb784c4f6ef32c525b11081e603c /packages/instant/src/style/z_index.ts | |
parent | c448a409c1dd7411208aeb577b64ba1246fc03d1 (diff) | |
download | dexon-0x-contracts-117e2f583ff44bdb63340a2134edea0f3ecb77b3.tar.gz dexon-0x-contracts-117e2f583ff44bdb63340a2134edea0f3ecb77b3.tar.zst dexon-0x-contracts-117e2f583ff44bdb63340a2134edea0f3ecb77b3.zip |
[instant] Viewport specific errors (#1228)
feat(instant): Shows different error animation based on viewport
Diffstat (limited to 'packages/instant/src/style/z_index.ts')
-rw-r--r-- | packages/instant/src/style/z_index.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/instant/src/style/z_index.ts b/packages/instant/src/style/z_index.ts index 727a5189d..03623f044 100644 --- a/packages/instant/src/style/z_index.ts +++ b/packages/instant/src/style/z_index.ts @@ -1,5 +1,6 @@ export const zIndex = { - errorPopup: 1, + errorPopBehind: 1, mainContainer: 2, panel: 3, + errorPopUp: 4, }; |