workspace-view.less 707 B

123456789101112131415161718192021222324252627282930313233343536
  1. @import "ui-variables";
  2. @import "utils";
  3. atom-workspace {
  4. contain: @contain_all;
  5. display: flex;
  6. flex-direction: column;
  7. height: 100%;
  8. overflow: hidden;
  9. position: relative;
  10. color: @text-color;
  11. background-color: @app-background-color;
  12. font-family: @font-family;
  13. atom-workspace-axis {
  14. contain: @contain_except_layout_paint;
  15. position: relative;
  16. }
  17. atom-workspace-axis.horizontal {
  18. contain: @contain_except_layout_paint;
  19. display: flex;
  20. flex: 1;
  21. min-width: 0;
  22. min-height: 0;
  23. }
  24. atom-workspace-axis.vertical {
  25. contain: @contain_except_layout_paint;
  26. display: flex;
  27. flex: 1;
  28. flex-direction: column;
  29. min-width: 0;
  30. min-height: 0;
  31. }
  32. }