fix(ai): prevent AI preferences panel clipping and enforce min-height on Generate Tests textarea (#8495)

This commit is contained in:
ravindra-bruno
2026-07-06 19:18:59 +05:30
committed by GitHub
parent 440156d80e
commit 143cb5fe33
2 changed files with 3 additions and 0 deletions

View File

@@ -105,6 +105,7 @@ export const PopupWrapper = styled.div`
background: ${(props) => props.theme.input.bg};
color: ${(props) => props.theme.text};
resize: vertical;
min-height: calc(3 * 1.4em + 18px);
outline: none;
transition: border-color 0.15s ease;

View File

@@ -41,6 +41,8 @@ const StyledWrapper = styled.div`
display: flex;
flex-direction: column;
min-height: 0;
overflow-y: auto;
padding-bottom: 2rem;
}
.ai-master {