index-view-layout-top.scss 926 字节
Newer Older
1
.index-view-layout--top {
2 3 4
    font-size: var(--app-font-size);
    line-height: var(--app-line-height);
    color: var(--app-color-black);
5
    .index-view-header {
6 7 8 9 10 11
        height: 64px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        background-color: var(--app-color-black);
        color: var(--app-color-white);
12
        .index-view-header__left {
13 14 15 16 17 18 19 20 21
            font-size: 21px;
            font-weight: 700;
            margin-left: 50px;
            .app-icon {
                width: 36px;
                height: 37px;
                margin-right: 6px;
            }
        }
22
        .index-view-header__right {
23 24 25 26
            display: flex;
            align-items: center;
        }
    }
27
    .index-view-content {
28 29 30 31 32 33
        height: calc(100% - 64px);
        overflow: auto;
        padding: 20px 38px 0 38px;
        background-color: var(--app-color-gray-400);
    }
}