From c647825b9ff7fb942a56877860f8794f0593d980 Mon Sep 17 00:00:00 2001 From: Matt Mo Date: Mon, 25 Jan 2021 00:37:11 -0800 Subject: [PATCH] Changed circular progress to use index plus 1 instead of the highest index. --- circular-progress.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/circular-progress.js b/circular-progress.js index 7d97b10..378926a 100644 --- a/circular-progress.js +++ b/circular-progress.js @@ -10,7 +10,7 @@ class CircularProgress extends IgniteElement { return /*css*/` mt-circular-progress > div > svg { position: absolute; - z-index: 999999; + z-index: 1; left: calc(50% - (4em / 2)); top: calc(50% - (4em / 2)); animation: rotator 2s linear infinite;