Files
gaoYuJournal/miniprogram/pages/index/index.less
2025-12-05 10:38:55 +08:00

60 lines
900 B
Plaintext

/**index.wxss**/
page {
height: 100vh;
display: flex;
flex-direction: column;
}
.index {
flex: 1;
overflow-y: hidden;
.container {
height: 100%;
display: flex;
padding: 200rpx 0;
box-sizing: border-box;
align-items: center;
flex-direction: column;
justify-content: space-between;
.header {
display: flex;
align-items: center;
flex-direction: column;
justify-content: center;
.logo {
width: 128px;
height: 128px;
display: block;
border-radius: 4px;
box-shadow: 2px 2px 8px rgba(0, 0, 0, .2);
margin-bottom: 1rem;
}
.name {
margin: 0 .5rem;
display: inline-block;
&.gao {
color: #FF7A9B;
}
&.yeyu {
color: #7A9BFF;
}
}
}
.password {
width: 20rem;
border-top: 1px solid rgba(0, 0, 0, .1);
border-bottom: 1px solid rgba(0, 0, 0, .1);
}
.enter {
width: 10rem;
}
}
}