index.less 395 B

123456789101112131415161718192021
  1. @import '~antd/es/style/themes/default.less';
  2. .title {
  3. position: relative;
  4. width: 100%;
  5. margin-bottom: 10px;
  6. padding-left: 10px;
  7. color: rgba(0, 0, 0, 0.8);
  8. font-weight: 600;
  9. line-height: 1;
  10. .title-before {
  11. position: absolute;
  12. top: 0;
  13. left: 0;
  14. width: 4px;
  15. height: calc(100% - 2px);
  16. background-color: @primary-color;
  17. border-radius: 0 3px 3px 0;
  18. }
  19. }