index.less 694 Bytes
Newer Older
mayongxin's avatar
mayongxin 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
.tablemanager_container {
    display: flex;
    flex-direction: column;
    .operate_bar {
        width: 100%;
        height: 60px;
        background-color: white;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
        .fast_search {
            height: 60px;
            margin-right: 10px;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
            align-items: center;

            .title {
                margin-left: 20px;
                margin-right: 5px;
            }
        }
    }
26 27 28 29 30

}
.table_container{
    width: 100%;
    height: calc(100% - 100px);
mayongxin's avatar
mayongxin committed
31
}