Fix: Small height of single line code editor when expanded

This commit is contained in:
devanshu052000 2025-05-20 13:58:42 +05:30
parent ac86b93045
commit c65e689b15
2 changed files with 9 additions and 1 deletions

View file

@ -43,7 +43,7 @@ const usePortal = ({ children, ...restProps }) => {
isCopilotEnabled={isCopilotEnabled}
>
<div
className={`editor-container ${optionalProps.cls ?? ''}`}
className={`editor-container codehinter-popup ${optionalProps.cls ?? ''}`}
key={key}
data-cy={`codehinder-popup-input-field`}
>

View file

@ -18891,4 +18891,12 @@ section.ai-message-prompt-input-wrapper {
.cm-editor {
max-height: 100px !important;
}
}
.codehinter-popup {
.single-line-codehinter-input {
.cm-editor {
max-height: 100% !important;
}
}
}