index.less 834 Bytes
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
.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 {
左玲玲's avatar
左玲玲 committed
34
            padding: 0 16px;
35 36 37 38 39 40
            flex: 1;
            border-left: 1px solid #f0f0f0;
            overflow: hidden;
        }
    }
}