fix: prevent h5 chat input toolbar overlap
parent
c0c489d443
commit
780ce6edba
|
|
@ -714,18 +714,21 @@ body {
|
|||
}
|
||||
|
||||
.chat-input-toolbar {
|
||||
flex-wrap: wrap;
|
||||
flex-direction: column;
|
||||
align-items: stretch;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.chat-input-toolbar-left {
|
||||
flex-wrap: wrap;
|
||||
gap: 0.5rem;
|
||||
flex: 1 1 auto;
|
||||
min-width: 0;
|
||||
}
|
||||
|
||||
.chat-input-toolbar .chat-send-button {
|
||||
margin-left: auto;
|
||||
margin-left: 0;
|
||||
align-self: flex-end;
|
||||
}
|
||||
|
||||
.chat-model-select .ant-select-selector {
|
||||
|
|
@ -733,7 +736,14 @@ body {
|
|||
}
|
||||
|
||||
.chat-model-select .ant-select-selection-item {
|
||||
max-width: 10rem;
|
||||
max-width: 9rem;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
|
||||
.chat-model-select .ant-select-selection-placeholder {
|
||||
max-width: 9rem;
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
|
|
|
|||
Loading…
Reference in New Issue