ProjectManage.less 1.53 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 30
        .anticon svg {
            margin-top: -5px;
        }
31

mayongxin's avatar
mayongxin committed
32
        .fast_search {
33 34 35 36 37
            height: 60px;
            margin-right: 10px;
            display: flex;
            flex-direction: row;
            justify-content: flex-start;
mayongxin's avatar
mayongxin committed
38 39 40
            align-items: center;

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

    .list_view {
48
        width: 100%;
皮倩雯's avatar
皮倩雯 committed
49
        height: calc(100vh - 187px);
50 51 52 53
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
54 55 56 57 58 59

        .ant-pagination {
            padding-right: 10px;
        }

        .ant-table-thead tr th {
shaoan123's avatar
shaoan123 committed
60
            font-weight: 600;
61
            color: rgba(0, 0, 0, 0.85);
shaoan123's avatar
shaoan123 committed
62
        }
63 64 65 66

        .ant-table-container {
            max-height: calc(100vh - 240px) !important;
            min-height: calc(100vh - 240px) !important;
67
            overflow-y: scroll;
皮倩雯's avatar
皮倩雯 committed
68
        }
69
    }
70 71

}