themblem/scanner/pages/result_page/result_page.wxss
2025-10-29 21:27:29 +00:00

33 lines
560 B
Plaintext

/* pages/result_page/result_page.wxss */
.container {
height: 100vh;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
background-color: #f5f5f5;
padding: 40rpx;
}
/* Success state (should be briefly visible before redirect) */
.success-container {
text-align: center;
}
.success-icon {
font-size: 120rpx;
color: #07c160;
margin-bottom: 40rpx;
}
.success-text {
font-size: 48rpx;
font-weight: bold;
color: #333;
margin-bottom: 20rpx;
}
.success-subtext {
font-size: 32rpx;
color: #666;
}