@import './scrollBar.scss';

html,
body,
#app {
    height: 100%;
    margin: 0;
    padding: 0;
}

/* start 文本溢出省略 */
.text-overflow-1 {
    /* 单行文本溢出追加省略号 */
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    white-space: normal;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}
.text-overflow-2 {
    /* 2行文本溢出追加省略号 */
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    white-space: normal;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.text-overflow-3 {
    /* 3行文本溢出追加省略号 */
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    white-space: normal;
    word-break: break-all;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}
/* end 文本溢出省略 */