Skip to content

Commit

Permalink
change(tokens): updated z-index tokens with negative values
Browse files Browse the repository at this point in the history
- bumped the variable values to catch most values we use in our less now
- index important is now capped to 9999
- z-index 0 is now -1, we can simply use 0 if we want to use 0 value without a variable
  • Loading branch information
ichim-david committed May 23, 2022
1 parent b8e5d37 commit 404efe4
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions theme/themes/eea/tokens/z-index.less
Original file line number Diff line number Diff line change
@@ -1,7 +1,12 @@
@z-index-0: 0;
@z-index-000: -100;
@z-index-00: -2;
@z-index-0: -1;
@z-index-1: 1;
@z-index-2: 2;
@z-index-3: 3;
@z-index-4: 4;
@z-index-5: 5;
@z-index-important: 2147483647;
@z-index-5: 10;
@z-index-6: 100;
@z-index-7: 200;
@z-index-8: 1000;
@z-index-important: 9999;

0 comments on commit 404efe4

Please sign in to comment.