Author: Adam Argyle [atom@argyleink.com]
Hash: a9b8de4746115cacce1c1f591a17e112f2878f5c
Timestamp: Sat, 02 Mar 2024 05:27:49 +0000 (6 months ago)

+5 -3 +/-2 browse
stub
stub

need to fix the build step gen:op
1diff --git a/src/props.zindex.css b/src/props.zindex.css
2index d6b869c..fa9eafb 100644
3--- a/src/props.zindex.css
4+++ b/src/props.zindex.css
5 @@ -4,5 +4,6 @@
6 --layer-3: 3;
7 --layer-4: 4;
8 --layer-5: 5;
9- --layer-important: 2147483647;
10+ --layer-max: 2147483647;
11+ --layer-important: infinity;
12 }
13 diff --git a/src/props.zindex.js b/src/props.zindex.js
14index fd7563d..3f0a6a5 100644
15--- a/src/props.zindex.js
16+++ b/src/props.zindex.js
17 @@ -4,5 +4,6 @@ export default {
18 '--layer-3': 3,
19 '--layer-4': 4,
20 '--layer-5': 5,
21- '--layer-important': 2147483647,
22- }
23+ '--layer-max': 2147483647,
24+ '--layer-important': 'infinity',
25+ };