common.scss 464 B

1234567891011121314151617181920212223242526
  1. .w100 {
  2. width: 100%;
  3. }
  4. // 页头
  5. .ele-body {
  6. .page-title {
  7. display: flex;
  8. justify-content: space-between;
  9. align-items: center;
  10. border-bottom: 1px solid #eaeefb;
  11. padding-bottom: 8px;
  12. margin-bottom: 16px;
  13. }
  14. }
  15. // ele-split-layout 左侧盒子充满
  16. .split-layout-right-content {
  17. position: absolute;
  18. top: 0;
  19. bottom: 0;
  20. left: 0;
  21. right: 0;
  22. box-sizing: border-box;
  23. border-width: 1px;
  24. border-style: solid;
  25. overflow: auto;
  26. }