codelist.scss 658 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
.codelist {
    display: flex;
    white-space: nowrap;
    text-overflow: ellipsis;
    word-break: break-all;
    overflow: hidden;
    .codelist-item {
        height: 20px;
        min-width: 80px;
        display: flex;
        align-items: center;
        justify-content: center;
        max-height: 32px;
        padding: 0px 3px;
        border-radius: 2px;
        font-size: 12px;
        line-height: 20px;
        color: var(--app-color-blue);
        border: 1px solid var(--app-color-blue);
        > img{
            max-height: 24px;
            width: auto;
            margin-right: 6px;
            border-radius: 50%;
        }
    }
  }