index.less 458 B

1234567891011121314151617181920212223242526
  1. .loading-container{
  2. height: 64px;
  3. transition: height 0.5s linear;
  4. overflow: hidden;
  5. &.hidden{
  6. height: 0;
  7. transition: height 0.5s linear;
  8. overflow: hidden;
  9. }
  10. .loading{
  11. display: flex;
  12. flex-direction: row;
  13. align-items: center;
  14. box-sizing: border-box;
  15. padding: 32px 16px;
  16. color: #1e88c7;
  17. overflow: hidden;
  18. justify-content: center;
  19. &-text{
  20. padding-left: 16px;
  21. font-size: 13px;
  22. }
  23. }
  24. }