fix(Inputbar): remove unnecessary flex properties from Inputbar styles (#6902)

This commit is contained in:
SuYao 2025-06-06 15:16:12 +08:00 committed by GitHub
parent 59195fec1a
commit 8efa7d25f8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -899,8 +899,6 @@ const InputBarContainer = styled.div`
border-radius: 15px;
padding-top: 6px; // 为拖动手柄留出空间
background-color: var(--color-background-opacity);
display: flex;
flex-direction: column;
&.file-dragging {
border: 2px dashed #2ecc71;
@ -929,7 +927,6 @@ const Textarea = styled(TextArea)`
padding: 0;
border-radius: 0;
display: flex;
flex: 1;
resize: none !important;
overflow: auto;
width: 100%;