schemeDetail.less 2.06 KB
Newer Older
1 2
.editModal_container{
    width: 100%;
3 4
    overflow-y: hidden;
    height: calc(100% - 20px);
5 6
    display: flex;
    flex-direction: column;
7 8 9 10 11 12 13 14
    button[ant-click-animating-without-extra-node]:after {
        border: 0 none;
        
        opacity: 0;
        
        animation:none 0 ease 0 1 normal;
        
        }
15 16 17 18 19 20 21 22 23
    .content{
        height: calc(100vh - 140px);
        overflow-y: scroll;
    }
    .cardList{
        display: flex;
        flex-wrap: wrap;
        .cardListItem{
            width: 50%;
24
            margin-bottom: 1rem;
25
        }
26
 
27 28 29 30
    }
    .ant-card-bordered {
        border-right: none;
    }
31 32 33 34 35 36
    .push_trench{
        width: 100%;
        height: fit-content;
        display: flex;
        flex-direction:row;
        flex-wrap: wrap;
37
        justify-content: space-between;
38
        .trench_card{
39
            margin-top: 1rem;
40
            width: 49.2%;
41 42 43 44 45 46 47
            border-width: 1px;
            border-color: #EEEEEE;
            border-style: solid;
            border-radius: 5px;
            display: flex;
            flex-direction: column;
            align-items: center;
48
            background-color: #ffffff;
49 50 51 52 53 54 55 56
            .card_title{
                border-bottom-style: solid;
                border-bottom-width: 1px;
                border-bottom-color:#F6F7F9;
                height:50px;
                width: 100%;
                display: flex;
                flex-direction: row;
57
                justify-content:space-between;
58
                padding: 0 24px;
59 60 61 62 63 64 65 66 67 68
                align-items: center;
                .lable{
                    font-size: large;
                    margin-left: 10px;
                }
            }
            .card_body{
                margin-top: 10px;
                width: 100%;
                padding: 10px;
69
                height: 12rem;
70 71
                display: flex;
                flex-direction: column;
72 73 74 75 76 77
            }
            .ant-switch{
                margin-right: 0.5rem;
            }
            .ant-form-item{
                margin-left: 1.3rem;
78 79 80 81 82 83
            }
            
        }

    }
}