28 lines
377 B
SCSS
28 lines
377 B
SCSS
|
|
.avatar {
|
|
|
|
width: 32px;
|
|
height: 32px;
|
|
flex-shrink: 0;
|
|
border-radius: 8px;
|
|
background-size: contain !important;
|
|
|
|
.user & {
|
|
background-size: contain;
|
|
background: yellow url('../../../../public/user.png');
|
|
}
|
|
|
|
|
|
.llm & {
|
|
background: yellow url('../../../../public/chatbot.png');
|
|
}
|
|
|
|
|
|
}
|
|
|
|
.user-more-infos {
|
|
margin-top: -35px;
|
|
margin-left: 39px;
|
|
}
|
|
|
|
|