diff --git a/src/components/ChattyLLM/ChattyLLMInputForm.vue b/src/components/ChattyLLM/ChattyLLMInputForm.vue index 41b15fcd..469c14fb 100644 --- a/src/components/ChattyLLM/ChattyLLMInputForm.vue +++ b/src/components/ChattyLLM/ChattyLLMInputForm.vue @@ -641,7 +641,7 @@ export default { &--close { .app-navigation-toggle-wrapper { - margin-right: -38px !important; + margin-right: -33px !important; } } @@ -649,6 +649,9 @@ export default { .session-area__chat-area, .session-area__input-area { padding-left: 0 !important; } + .session-area__top-bar { + padding-left: 36px !important; + } } } @@ -719,6 +722,7 @@ export default { display: flex; justify-content: space-between; align-items: center; + gap: 4px; position: sticky; top: 0; height: calc(var(--default-clickable-area) + var(--default-grid-baseline) * 2); diff --git a/src/components/ChattyLLM/EditableTextField.vue b/src/components/ChattyLLM/EditableTextField.vue index 4fa2c894..0126aecd 100644 --- a/src/components/ChattyLLM/EditableTextField.vue +++ b/src/components/ChattyLLM/EditableTextField.vue @@ -19,6 +19,7 @@ :maxlength="maxLength" :disabled="loading" :placeholder="placeholder" + :label-outside="true" @keydown.enter="handleSubmitText" @keydown.esc="handleCancelEditing" />