en-lang.less 579 Bytes
:global {
  html[lang="sEnglish"] {
    th[width="40"] {
      .th-div {
        width: 32px;
        margin: 0;
        height: auto;
        display: -webkit-box;
        /*! autoprefixer: ignore next */
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 10;
        /* 只保留 2 行 */
        overflow: hidden;
        text-overflow: ellipsis;
        /* 兜底 */
        white-space: normal;
        word-break: break-all;
        /* 覆盖 antd 默认 nowrap */
        /* 按需调整,决定何时断行 */
        line-height: 1.2;
      }
    }
  }
}