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