app-tree.less 1.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56
.app-tree {
    width     : 100%;
    height    : 100%;
    overflow-y: auto;

    .app-tree-content {
        height: calc(100% - 100px);

        .app-tree__treenav {
            padding-left: 14px;
            font-size   : 14px;
            margin      : 10px 0;

            .app-tree__treenav__text {
                padding: 0 3px;
            }
        }

        .app-tree__partition {
            height: 8px;
        }

        .app-tree__icon {
            font-size: 20px;
        }

        .app-tree__list {
            height    : calc(100% - 20px);
            overflow-y: auto;


        }

        .app-tree__list__item {
            font-size  : 15px;
            font-family: '微软雅黑';
        }

        .app-tree__list__item:last-child {
            --inner-border-width: 0;
        }

    }

    .app-tree__footer {
        height         : 100px;
        display        : flex;
        justify-content: center;
        align-items    : center;
    }

    .app-tree__footer__button {
        height: 50px;
        width : 50%;
    }
}