39 lines
660 B
Plaintext
39 lines
660 B
Plaintext
.container {
|
|
background: var(--oak-bg-color-page);
|
|
display: flex;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
height: 100vh;
|
|
}
|
|
|
|
.syncWeChat {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.avatar_container {
|
|
height: 220px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
flex-direction: column;
|
|
|
|
.avatar {
|
|
width: 84px;
|
|
height: 84px;
|
|
border-radius: 42px;
|
|
margin-bottom: 10px;
|
|
}
|
|
}
|
|
|
|
|
|
.list {
|
|
flex: 1;
|
|
margin-top: 10px;
|
|
margin-bottom: 10px;
|
|
background: var(--oak-bg-color-container);
|
|
}
|