Merge pull request #11264 from dataease/pr@dev-v2_st

fix(系统设置): 卡片长度需要一致
This commit is contained in:
dataeaseShu 2024-07-30 15:09:46 +08:00 committed by GitHub
commit 7793008154
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 9 additions and 1 deletions

View File

@ -357,7 +357,7 @@ const queryAnswer = (event?: KeyboardEvent) => {
}
.question-input {
min-height: 47px;
width: calc(100% - 400px);
width: calc(100% - 360px);
margin-left: 20px;
display: flex;
align-items: center;

View File

@ -537,3 +537,11 @@ const save = () => {
}
}
</style>
<style lang="less">
.mobile-config-panel {
.title-container {
width: 90% !important;
}
}
</style>