微信小程序用户管理页面样式 - 账号、姓名、身份修改
<style>
.container {
margin: 20px;
padding: 20px;
border: 1px solid #ccc;
border-radius: 5px;
}
.header {
font-size: 24px;
font-weight: bold;
margin-bottom: 20px;
}
.user-list {
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.user-item {
width: 30%;
margin-bottom: 20px;
padding: 10px;
border: 1px solid #ccc;
border-radius: 5px;
display: flex;
flex-direction: column;
justify-content: space-between;
}
.user-name {
font-size: 18px;
font-weight: bold;
margin-bottom: 10px;
}
.user-account {
font-size: 16px;
margin-bottom: 10px;
}
.user-role {
font-size: 16px;
margin-bottom: 10px;
}
.user-edit {
display: flex;
justify-content: flex-end;
}
.btn {
background-color: #007aff;
color: #fff;
border: none;
border-radius: 5px;
padding: 5px 10px;
font-size: 16px;
cursor: pointer;
}
.btn:hover {
background-color: #0062cc;
}
</style>
原文地址: https://www.cveoy.top/t/topic/jqif 著作权归作者所有。请勿转载和采集!