app-scroll-container.less 1014 字节
Newer Older
1 2 3 4 5 6
.app-scroll-container {
    height: 100%;
    width: 100%;

    .app-scroll-container__header,
    .app-scroll-container__bottom {
7 8
        display: flex;
        flex-direction: column;
9 10 11 12 13 14 15 16 17
        width: 100%;
    }

    .app-scroll-container__middle {
        display: flex;
        width: 100%;
        .app-scroll-container__left,
        .app-scroll-container__center,
        .app-scroll-container__right {
18 19
            display: flex;
            flex-direction: column;
20 21 22 23 24 25 26 27 28 29 30 31
            height: 100%;
        }
    }

    .no-style {
        padding: 0;
        margin: 0;
    }

    .overflow-auto {
        overflow: auto;
    }
32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51

    // 滚动条样式
    ::-webkit-scrollbar {
        background: transparent;
        width: 4px;
        height: 4px;
    }

    ::-webkit-scrollbar-thumb {
        border-radius: 0;
        box-shadow: none;
        border: 0;
        background-color: #cecece;
    }

    ::-webkit-scrollbar-track {
        border-radius: 0;
        box-shadow: none;
        border: 0;
    }
52
}