style.scss 372 B

1234567891011121314151617181920212223242526272829
  1. @import "../../style/common";
  2. .flex-1{
  3. flex: 1;
  4. }
  5. .relative{
  6. position: relative;
  7. z-index: 5;
  8. }
  9. .refresh-view-screen{
  10. width: 100%;
  11. height: 100%;
  12. }
  13. .refresh-view-screen-absolute{
  14. position: absolute;
  15. top: 0;
  16. bottom: 0;
  17. left: 0;
  18. right: 0;
  19. }
  20. :host{
  21. flex:1;
  22. display: flex;
  23. flex-direction: column;
  24. }
  25. .flex{
  26. display: flex;
  27. flex-direction: column;
  28. }