ProjectManage.less 1.46 KB
Newer Older
mayongxin's avatar
mayongxin committed
1
.project_container {
2 3
    width: 100%;
    height: calc(100vh - 124px);
mayongxin's avatar
mayongxin committed
4 5

    .operate_bar {
6 7 8 9 10 11 12
        width: 100%;
        height: 60px;
        background-color: white;
        display: flex;
        flex-direction: row;
        justify-content: flex-start;
        align-items: center;
mayongxin's avatar
mayongxin committed
13 14

        .template_type {
15
            height: 60px;
mayongxin's avatar
mayongxin committed
16

17 18 19
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
mayongxin's avatar
mayongxin committed
20 21 22
            align-items: center;

            .title {
23 24
                margin-left: 18px;
                margin-right: 10px;
mayongxin's avatar
mayongxin committed
25
            }
26
        }
27 28 29
        .anticon svg {
            margin-top: -5px;
        }
mayongxin's avatar
mayongxin committed
30
        .fast_search {
31 32 33 34 35
            height: 60px;
            margin-right: 10px;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
mayongxin's avatar
mayongxin committed
36 37 38
            align-items: center;

            .title {
39 40
                margin-left: 25px;
                margin-right: 10px;
mayongxin's avatar
mayongxin committed
41
            }
42 43
        }
    }
mayongxin's avatar
mayongxin committed
44 45

    .list_view {
46
        width: 100%;
皮倩雯's avatar
皮倩雯 committed
47
        height: calc(100vh - 187px);
48 49 50 51
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
shaoan123's avatar
shaoan123 committed
52 53 54 55
        .ant-table-thead tr th{
            font-weight: 600;
            color:rgba(0,0,0,0.85);
        }
皮倩雯's avatar
皮倩雯 committed
56 57 58
        .ant-table-container{
            max-height: calc(100vh - 240px)!important;
            min-height:calc(100vh - 240px)!important;
59
            overflow-y: scroll;
皮倩雯's avatar
皮倩雯 committed
60
        }
61
    }
皮倩雯's avatar
皮倩雯 committed
62
    
mayongxin's avatar
mayongxin committed
63
}