41 lines
705 B
Plaintext
41 lines
705 B
Plaintext
.container {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
|
|
.container2 {
|
|
height: 100%;
|
|
width: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: stretch;
|
|
|
|
.list {
|
|
flex: 1;
|
|
|
|
|
|
.avatar {
|
|
font-size: 24px;
|
|
font-weight: bold;
|
|
width: 48px;
|
|
height: 48px;
|
|
border-radius: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
color: var(--oak-color-primary);
|
|
background-color: silver;
|
|
}
|
|
|
|
.switch {
|
|
width: 72px;
|
|
}
|
|
}
|
|
}
|
|
|
|
.btns {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: flex-end;
|
|
} |