38 lines
636 B
Plaintext
38 lines
636 B
Plaintext
/* packageH/project_verification/components/panel/panel.wxss */
|
|
.panel {
|
|
padding: 28rpx 30rpx;
|
|
background-color: white;
|
|
}
|
|
|
|
.panel-raduis {
|
|
border-radius: 15rpx;
|
|
}
|
|
|
|
.panel-title {
|
|
padding-left: 14rpx;
|
|
font-size: 26rpx;
|
|
color: #333;
|
|
white-space: nowrap;
|
|
text-overflow: ellipsis;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.panel-title::before {
|
|
content: "";
|
|
display: inline-block;
|
|
margin: auto 0;
|
|
width: 4rpx;
|
|
height: 26rpx;
|
|
transform: translateX(-14rpx) translateY(1px);
|
|
background-color: #ce811d;
|
|
border-radius: 2rpx;
|
|
}
|
|
|
|
.panel-has-title .panel-content {
|
|
margin-top: 40rpx;
|
|
}
|
|
|
|
/* .panel-footer {
|
|
margin-top: 30rpx;
|
|
} */
|