38 lines
699 B
SCSS
38 lines
699 B
SCSS
![]() |
:host {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
justify-content: flex-end;
|
||
|
align-items: center;
|
||
|
|
||
|
align-content: space-between;
|
||
|
|
||
|
.bot-talks-container {
|
||
|
display: flex;
|
||
|
flex-direction: row;
|
||
|
align-items: center;
|
||
|
}
|
||
|
|
||
|
.bubble {
|
||
|
padding: 16px;
|
||
|
border-radius: 8px;
|
||
|
display: block;
|
||
|
background: #E5DCFE;
|
||
|
|
||
|
color: #1B1D27;
|
||
|
font-family: Barlow;
|
||
|
font-size: 14px;
|
||
|
font-style: normal;
|
||
|
font-weight: 400;
|
||
|
line-height: 16px; /* 114.286% */
|
||
|
margin-right: 10px;
|
||
|
}
|
||
|
|
||
|
.avatar {
|
||
|
background: white url('../../public/chatbot.png') center center no-repeat;
|
||
|
background-size: contain;
|
||
|
width: 32px;
|
||
|
height: 32px;
|
||
|
border-radius: 8px;
|
||
|
}
|
||
|
}
|