Files
memind/miniapp/pages/login/index.wxss
T
john c842119929 fix(miniapp): add missing uuid and message-display utils
Commit the utility modules required by api.js, messages.js, and chat page
so WeChat DevTools can resolve require('./uuid') at runtime.

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-07-11 13:01:05 +08:00

73 lines
995 B
Plaintext

.login-page {
display: flex;
flex-direction: column;
gap: 36rpx;
padding-top: 96rpx;
}
.brand {
display: flex;
flex-direction: column;
gap: 12rpx;
}
.brand-title {
font-size: 68rpx;
font-weight: 800;
color: #101820;
}
.brand-subtitle {
font-size: 28rpx;
color: #5b6b7b;
}
.login-card {
display: flex;
flex-direction: column;
gap: 24rpx;
padding: 32rpx;
}
.divider {
display: flex;
justify-content: center;
color: #94a3b8;
font-size: 24rpx;
}
.field {
height: 84rpx;
padding: 0 24rpx;
border: 1rpx solid #ccd6e0;
border-radius: 12rpx;
background: #f8fafc;
box-sizing: border-box;
}
.error {
color: #b42318;
font-size: 24rpx;
line-height: 1.5;
}
.warn-box,
.info-box {
padding: 20rpx 24rpx;
border-radius: 12rpx;
font-size: 24rpx;
line-height: 1.6;
}
.warn-box {
background: #fff4e5;
color: #9a4b00;
border: 1rpx solid #ffd699;
}
.info-box {
background: #eef6ff;
color: #1d4f91;
border: 1rpx solid #c7ddff;
}