index.less 805 Bytes
Newer Older
左玲玲's avatar
左玲玲 committed
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
.ledgerbox {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    position: relative;

    .ledgerheader {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
        flex-shrink: 0;
    }

    .ledgercontent {
        flex: 1;
        width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: space-between;

        .ledgerleft {
            width: 300px;
            display: flex;
            flex-direction: column;
            height: 100%;
            overflow-y: hidden;
            padding: 0 16px;
            flex-shrink: 0;
        }

        .ledgerright {
            flex: 1;
            border-left: 1px solid #f0f0f0;
左玲玲's avatar
左玲玲 committed
36
            overflow: hidden;
左玲玲's avatar
左玲玲 committed
37 38 39
        }
    }
}