loading-screen.sass 250 B

1234567891011121314
  1. @import "colors"
  2. .loading-screen
  3. position: fixed
  4. top: 0px
  5. left: 0px
  6. width: 100%
  7. height: 100%
  8. z-index: 100000
  9. background-color: $primary-color
  10. transition: width 1s
  11. .loading-screen.hidden
  12. width: 0px !important