app-search-editor.less 445 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
.app-search-editor {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    overflow: hidden;
    .app-search-editor__item {
        width: calc(33% - 16px);
        height: 40px;
        border: 0.3px solid #e6e8ef;
        margin: 8px;
        line-height: 40px;
        text-align: center;
        font-size: 12px;
    }
    .app-search-editor__item--active {
        border-color: #333;
    }
}