| 123456789101112131415161718192021 |
- // 自定义样式文件,专门用于 chat.tsx 组件
- // 导入原始样式作为基础
- @import "./chat.module.scss";
- // 移动端适配
- @media only screen and (max-width: 600px) {
- // 移动端输入框容器高度调整
- .chat-input-panel-inner {
- min-height: 50px !important;
- max-height: 50px !important;
- }
- // 移动端输入框高度调整为一行
- .chat-input {
- min-height: 50px !important;
- padding: 14px 60px 14px 16px !important; // 右侧留出发送按钮空间
- font-size: 16px !important;
- line-height: 22px !important;
- }
- }
|