page-header.scss 713 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. @import "mixins/mixins";
  2. @import "common/var";
  3. @include b(page-header) {
  4. display: flex;
  5. line-height: 24px;
  6. @include e(left) {
  7. display: flex;
  8. cursor: pointer;
  9. margin-right: 40px;
  10. position: relative;
  11. &::after {
  12. content: "";
  13. position: absolute;
  14. width: 1px;
  15. height: 16px;
  16. right: -20px;
  17. top: 50%;
  18. transform: translateY(-50%);
  19. background-color: $--border-color-base;
  20. }
  21. .el-icon-back {
  22. font-size: 18px;
  23. margin-right: 6px;
  24. align-self: center;
  25. }
  26. @include e(title) {
  27. font-size: 14px;
  28. font-weight: 500;
  29. }
  30. }
  31. @include e(content) {
  32. font-size: 18px;
  33. color: $--color-text-primary;
  34. }
  35. }