diff --git a/src/styles.css b/src/styles.css index 550b3a1..44d61c2 100644 --- a/src/styles.css +++ b/src/styles.css @@ -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;