diff options
author | Francesco Agosti <francesco.agosti93@gmail.com> | 2018-11-02 04:57:29 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-11-02 04:57:29 +0800 |
commit | 0955feb0234bc90b7dcf5ad3a308570c9fa5d490 (patch) | |
tree | 623c55dddb6326cf8998619da25a82c48b87f876 /packages/instant/src/style | |
parent | 44a34ee541f2c350b65005a1430072ed90fbc790 (diff) | |
parent | 935e5da78e14f78685ad9270c19f473fa193d542 (diff) | |
download | dexon-sol-tools-0955feb0234bc90b7dcf5ad3a308570c9fa5d490.tar dexon-sol-tools-0955feb0234bc90b7dcf5ad3a308570c9fa5d490.tar.gz dexon-sol-tools-0955feb0234bc90b7dcf5ad3a308570c9fa5d490.tar.bz2 dexon-sol-tools-0955feb0234bc90b7dcf5ad3a308570c9fa5d490.tar.lz dexon-sol-tools-0955feb0234bc90b7dcf5ad3a308570c9fa5d490.tar.xz dexon-sol-tools-0955feb0234bc90b7dcf5ad3a308570c9fa5d490.tar.zst dexon-sol-tools-0955feb0234bc90b7dcf5ad3a308570c9fa5d490.zip |
Merge pull request #1201 from 0xProject/feature/instant/basic-token-modal
[instant] Add `Select Token` mode, animation abstractions, and basic token selection panel
Diffstat (limited to 'packages/instant/src/style')
-rw-r--r-- | packages/instant/src/style/z_index.ts | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/packages/instant/src/style/z_index.ts b/packages/instant/src/style/z_index.ts new file mode 100644 index 000000000..727a5189d --- /dev/null +++ b/packages/instant/src/style/z_index.ts @@ -0,0 +1,5 @@ +export const zIndex = { + errorPopup: 1, + mainContainer: 2, + panel: 3, +}; |