fix(项目设置): 应用管理下接口测试设置页面显示会互相遮挡

--bug=1014628 --user=李玉号 【项目设置】应用管理,接口测试,页面显示会互相遮挡
https://www.tapd.cn/55049933/s/1195908
This commit is contained in:
shiziyuan9527 2022-07-06 15:02:13 +08:00 committed by shiziyuan9527
parent 2c6f0b9afe
commit ca1ae84fcd
1 changed files with 12 additions and 3 deletions

View File

@ -41,7 +41,7 @@
<el-tab-pane :label="$t('commons.api')" name="api">
<el-row :gutter="20">
<el-col :span="8">
<el-col :span="8" class="commons-api-enable">
<el-row style="margin-top: 10px">
<span style="font-weight:bold">{{ $t('commons.enable_settings') }}</span>
</el-row>
@ -80,7 +80,7 @@
:title="$t('report.report_sharing_link')"/>
</el-row>
</el-col>
<el-col :span="8" :offset="4">
<el-col :span="8" class="commons-view-setting">
<el-row style="margin-top: 10px">
<span style="font-weight:bold">{{ $t('commons.view_settings') }}</span>
</el-row>
@ -276,5 +276,14 @@ export default {
</script>
<style scoped>
@media only screen and (max-width: 1425px) {
.commons-api-enable {
width: 100%;
}
}
@media only screen and (min-width: 1426px) {
.commons-view-setting {
margin-left: 200px;
}
}
</style>