chore(): remove loading icon

This commit is contained in:
Adam Bradley
2016-06-17 20:55:17 -05:00
parent 1986710537
commit 321c6d92ae
2 changed files with 0 additions and 36 deletions

View File

@ -115,7 +115,6 @@
<body>
<ion-app>
<ion-loading-icon></ion-loading-icon>
</ion-app>
<script>
@ -124,8 +123,6 @@
} else {
document.body.classList.remove('rtl');
}
System.import('index.js').then(function(m) {}, console.error.bind(console));
</script>

View File

@ -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";
}
}