JSFiddle - React, Tailwind, and code Playground
by Chase Wilson
JavaScript
getMaxZindex: function() {
var maxZ = 0;
$$('body *').each(function(el) {
if(el.getStyle('z-index').toInt()) {
maxZ = Math.max(maxZ, el.getStyle('z-index').toInt());
}
});
return maxZ;
}.protect(),