app-quick-group.scss 709 字节
Newer Older
1 2 3 4 5 6 7 8 9 10 11
.app-quick-group {
    width: 100%;
    padding: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    background-color: transparent;
    .app-quick-item {
        width: 110px;
        height: 34px;
        padding: 0;
12
        cursor: pointer;
13 14 15 16 17 18 19 20 21 22 23
        display: flex;
        align-items: center;
        justify-content: center;
        margin-right: 20px;
        background: var(--app-color-white);
        border: 1px solid #FFFFFF;
        box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.16);
        &.is-active {
            font-weight: bold;
            border: 1px solid var(--app-color-black);
            box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.16);
24 25 26
        }
    }
}