maxkb/ui/src/components/ai-chat/index.scss
wangdan-fit2cloud 0eebbb094c
feat: Optimize the mobile voice interaction experience
* fix: Optimize small screen dialogue style

* feat: Mobile voice conversation new UI

* feat: Optimize the mobile voice interaction experience

* feat: Optimize the mobile voice interaction experience
2025-03-21 16:57:04 +08:00

50 lines
837 B
SCSS

.ai-chat {
--padding-left: 36px;
height: 100%;
display: flex;
flex-direction: column;
box-sizing: border-box;
position: relative;
color: var(--app-text-color);
box-sizing: border-box;
&__content {
padding-top: 0;
box-sizing: border-box;
.avatar {
float: left;
}
.content {
padding-left: var(--padding-left);
padding-right: var(--padding-left);
:deep(ol) {
margin-left: 16px !important;
}
}
}
}
.chat-width {
max-width: 80%;
margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
.chat-width {
max-width: 100% !important;
margin: 0 auto;
}
}
@media only screen and (max-width: 768px) {
.ai-chat {
height: calc(100% - 100px);
}
}
.chat-mobile {
.el-button.is-text:not(.is-disabled):hover {
background: none;
}
}