This repository has been archived on 2024-09-30. You can view files and clone it, but cannot push or open issues/pull-requests.
wxSmallApp/pages/messageEdit/messageEdit.wxss

41 lines
818 B
Plaintext

.leave-message-page {
padding: 20px;
background-color: #f0f0f0; /* 页面背景色 */
}
.input-group {
margin-bottom: 20px; /* 间距 */
background-color: white; /* 输入区域背景色 */
padding: 10px;
border-radius: 10px; /* 圆角 */
}
.label {
font-size: 16px;
color: #333;
margin-bottom: 5px;
}
.input,
.textarea {
width: 100%;
padding: 10px;
border: 1px solid #ddd; /* 边框 */
border-radius: 5px; /* 圆角 */
}
.textarea {
height: 150px; /* 文本区域高度 */
}
.submit-btn {
width: calc(100% - 40px); /* 减去padding */
margin: 0 auto; /* 水平居中 */
padding: 10px;
background-color: #1aad19; /* 微信绿 */
color: white;
border-radius: 5px; /* 圆角 */
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 轻微阴影 */
font-size: 18px; /* 字号 */
}