40 lines
658 B
Plaintext
40 lines
658 B
Plaintext
.container {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background-color: var(--oak-bg-color-page);
|
|
}
|
|
|
|
.userInfo {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 20px 10px 10px 10px;
|
|
margin-bottom: 10px;
|
|
background-color: var(--oak-bg-color-container);
|
|
|
|
.avatar {
|
|
width: 60px;
|
|
height: 60px;
|
|
margin-bottom: 10px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.nickname {
|
|
margin-bottom: 10px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
.userIcon {
|
|
color: #fff;
|
|
font-size: 24px;
|
|
}
|
|
}
|
|
|
|
.list {
|
|
background-color: #fff;
|
|
} |