You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
36 lines
539 B
36 lines
539 B
/* pages/admin/admin.wxss */
|
|
.container {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: center;
|
|
height: 100%;
|
|
}
|
|
|
|
.header {
|
|
margin-bottom: 100rpx;
|
|
}
|
|
|
|
.title {
|
|
font-size: 70rpx;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.buttons {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
align-items: center;
|
|
}
|
|
|
|
.action-btn {
|
|
width: 400rpx;
|
|
height: 100rpx;
|
|
margin: 35rpx 0;
|
|
background-color: #007aff;
|
|
color: white;
|
|
font-size: 40rpx;
|
|
text-align: center;
|
|
border-radius: 20rpx;
|
|
}
|