25 lines
596 B
SCSS
25 lines
596 B
SCSS
.chat-wrap {
|
|
border: 1px solid rgba(255, 255, 255, 0.1);
|
|
backdrop-filter: blur(20px);
|
|
background: rgba(255, 255, 255, 0.9);
|
|
.history-conversation-btn {
|
|
border-radius: 8px 0 0 8px;
|
|
border-top: 1px solid #eabaff;
|
|
border-bottom: 1px solid #eabaff;
|
|
border-left: 1px solid #eabaff;
|
|
position: absolute;
|
|
top: 50%;
|
|
right: 0;
|
|
transform: translateY(-50%);
|
|
.s1 {
|
|
color: var(--Text-1, #211f24);
|
|
|
|
font-family: $font-family-regular;
|
|
font-size: 10px;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
line-height: 18px; /* 180% */
|
|
}
|
|
}
|
|
}
|