27 lines
587 B
Plaintext
27 lines
587 B
Plaintext
/* pages/add/edit.wxss */
|
|
.t-input {
|
|
--td-input-bg-color: #F2F2F7;
|
|
margin: 32rpx;
|
|
border-radius: 48rpx; /* 关键:加圆角 */
|
|
overflow: hidden; /* 防止子元素溢出圆角 */
|
|
}
|
|
|
|
.external-class {
|
|
--td-textarea-background-color: #F2F2F7;
|
|
margin: 32rpx;
|
|
border-radius: 48rpx; /* 关键:加圆角 */
|
|
overflow: hidden;
|
|
height: 256rpx;
|
|
background-color: wheat;
|
|
|
|
}
|
|
|
|
|
|
.box {
|
|
display: flex;
|
|
margin: 32rpx;
|
|
justify-content: space-around;
|
|
flex-wrap: wrap;
|
|
background-color: var(--td-bg-color-container, #fff);
|
|
}
|