style.less 726 Bytes

.mark-down {
  width: auto;
  max-width: 60%;
  background: #fff;
  border-radius: 10px;
  padding: 20px;
  .group {
    margin-bottom: 10px;
  }
}

.role {
  width: 40px;
  height: 28px;
  line-height: 28px;
  font-size: 14px;
  border-radius: 14px;
  text-align: center;
}

.text-right {
  display: flex;
  flex-direction: row-reverse;
  padding-right: 2%;
  .role {
    margin-left: 20px;
    background: #0A84FE;
    color: #fff;
  }
  .mark-down {
    background: #0A84FE;
    color: #fff;
    padding: 10px;
  }
}
.text-left {
  display: flex;
  padding-left: 2%;
  .role {
    margin-right: 20px;
    background: #fff;
  }
  .mark-down {
    p {
      overflow-wrap:break-word;
      word-break: break-all;
    }
  }
}