diff --git a/scripts/e2e/e2e.template.html b/scripts/e2e/e2e.template.html
index 3e8ceed0b2..788f4a5f32 100644
--- a/scripts/e2e/e2e.template.html
+++ b/scripts/e2e/e2e.template.html
@@ -115,7 +115,6 @@
-
diff --git a/src/util/util.scss b/src/util/util.scss
index e85db6575c..ecb9927cd6 100755
--- a/src/util/util.scss
+++ b/src/util/util.scss
@@ -88,36 +88,3 @@ click-block {
.click-block-active {
transform: translate3d(0, 0, 0);
}
-
-
-// Loading Icon
-// --------------------------------------------------
-
-@keyframes rotation {
- from {
- transform: rotate(0deg);
- }
-
- to {
- transform: rotate(359deg);
- }
-}
-
-ion-loading-icon {
- display: flex;
-
- align-self: center;
-
- margin: auto;
-
- font-family: "Ionicons";
-
- font-size: 128px;
- color: #666;
-
- animation: rotation 45s infinite linear;
-
- &::before {
- content: "\f44e";
- }
-}