index.less 587 Bytes
Newer Older
krysent's avatar
krysent committed
1
@import '~antd/es/style/variable.less';
krysent's avatar
krysent committed
2 3 4 5 6
.title {
  position: relative;
  width: 100%;
  margin-bottom: 8px;
  padding-left: 16px;
krysent's avatar
krysent committed
7
  color: #000000;
krysent's avatar
krysent committed
8 9 10 11 12 13 14 15
  font-weight: bolder;
  font-size: 16px;
  &::before {
    position: absolute;
    top: 4px;
    left: 7px;
    width: 3px;
    height: 16px;
krysent's avatar
krysent committed
16
    background-color: @primary-color;
krysent's avatar
krysent committed
17 18 19 20 21 22 23 24 25 26 27 28 29 30
    border-radius: 4px;
    content: '';
  }
  &::after {
    position: absolute;
    top: 14px;
    right: 0px;
    width: calc(100% - 160px);
    height: 1px;
    border-bottom: 1px dotted rgba(0, 0, 0, 0.1);
    border-radius: 4px;
    content: '';
  }
}