/* Hide the loader once the main app is bootstrapped */
/* This is now done with javascript in init.ts */

/* prettier-ignore */
.app-loader {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  display: none;
}

.app-loader__image {
  width: 80px;
}

/* Temp styles for basic loading/error states */
.app-loading {
  padding: 5px;
  color: #444;
}
