ProjectManage.less 1.11 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: 5px;
                margin-right: 5px;
mayongxin's avatar
mayongxin committed
25
            }
26
        }
mayongxin's avatar
mayongxin committed
27 28

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

            .title {
37 38
                margin-left: 20px;
                margin-right: 5px;
mayongxin's avatar
mayongxin committed
39
            }
40 41
        }
    }
mayongxin's avatar
mayongxin committed
42 43

    .list_view {
44 45 46 47 48 49 50
        width: 100%;
        height: calc(100vh - 184px);
        background-color: white;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
    }
mayongxin's avatar
mayongxin committed
51
}