Lambda-School-Labs/designhub-fe

View on GitHub
src/common/Loading/styles.scss

Summary

Maintainability
Test Coverage
@import '../SASS/palette';
@import '../SASS/mixins';

.Loading-container {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100vh;
  background-color: $almost-black;
  opacity: 0.7;
  z-index: 9999999999;

  .loader {
    position: absolute;
    width: max-content;
    margin: 0 auto;
    color: white;
    opacity: 0.6;
  }
}