94 lines
1.5 KiB
SCSS
94 lines
1.5 KiB
SCSS
@use '../../src/styles/variables';
|
|
|
|
: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;
|
|
|
|
|
|
.ref-container {
|
|
margin-top: 8px;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
gap: 5px;
|
|
|
|
.label {
|
|
font-weight: 600;
|
|
}
|
|
|
|
.ref {
|
|
display: flex;
|
|
padding: 6px 10px 8px 10px;
|
|
align-items: center;
|
|
gap: 5px;
|
|
|
|
border-radius: 8px;
|
|
background: #E5DCFE;
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
.document-container {
|
|
margin-top: 16px;
|
|
margin-bottom: 32px;
|
|
|
|
.title {
|
|
margin-bottom: 8px;
|
|
}
|
|
|
|
app-copy {
|
|
margin-left: 12px;
|
|
}
|
|
|
|
a {
|
|
color: #000;
|
|
text-decoration: none;
|
|
}
|
|
}
|
|
|
|
.bot-talks-bubble {
|
|
padding: 16px;
|
|
border-radius: 8px;
|
|
display: block;
|
|
background: #E5DCFE;
|
|
|
|
color: #1B1D27;
|
|
font-family: Barlow;
|
|
font-size: 16px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 16px; /* 114.286% */
|
|
margin-right: 10px;
|
|
}
|
|
|
|
.avatar-container {
|
|
//background: white;
|
|
padding: 12px;
|
|
}
|
|
|
|
.avatar {
|
|
background: transparent url('../../public/chatbot.png') center center no-repeat;
|
|
background-size: contain;
|
|
width: 32px;
|
|
height: 32px;
|
|
border-radius: 8px;
|
|
}
|
|
|
|
app-copy button.copy {
|
|
background: transparent !important;
|
|
border: 0;
|
|
}
|
|
}
|