57 lines
1.1 KiB
CSS
57 lines
1.1 KiB
CSS
.newPanel{
|
|
border:1px solid #eaeaea;
|
|
border-radius: 4px;
|
|
}
|
|
.newPanel_title{
|
|
height: 3rem;
|
|
line-height: 3rem;
|
|
background: #F1F8FF;
|
|
text-align: center;
|
|
border-radius: 4px 4px 0px 0px;
|
|
font-size: 1.6em;
|
|
border-bottom: 1px solid #f0f0f0
|
|
}
|
|
.newPanel_content{
|
|
padding:1rem 2rem;
|
|
}
|
|
.newPanel_content .ant-form-item-control-wrapper{
|
|
flex: 1;
|
|
min-width: 280px;
|
|
}
|
|
.newPanel_content .ant-select-selection{
|
|
height: 37px;
|
|
}
|
|
.newPanel_content .ant-select-selection__rendered,.newPanel_content input{
|
|
height: 35px;
|
|
line-height: 35px;
|
|
}
|
|
|
|
.newContent_inline{
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-between;
|
|
align-items:flex-end
|
|
}
|
|
|
|
.newContent_inline > .ant-form-item:nth-child(2){
|
|
margin-left: 20px;
|
|
}
|
|
.newPanel_content .privatePart .ant-form-item-label{
|
|
margin-left: 0px;
|
|
}
|
|
.newPanel_content .ant-form-item-label{
|
|
line-height: 25px;
|
|
height: 25px;
|
|
margin-left: -0.8rem;
|
|
}
|
|
@media screen and (max-width: 750px){
|
|
.newPanel_content{
|
|
width:95%;
|
|
}
|
|
.newPanel_content .ant-row.ant-form-item{
|
|
display: grid
|
|
}
|
|
.newContent_inline > .ant-form-item:nth-child(2){
|
|
margin-left:0px
|
|
}
|
|
} |