refactor: 样式调整

Former-commit-id: abc0fb7efca87ce596d7a61cb81685252cd10afa
This commit is contained in:
haoxr
2023-03-13 23:07:28 +08:00
parent 6009ec29b7
commit 8baa04362a

View File

@@ -1,14 +1,23 @@
<!-- 接口文档 --> <!-- 接口文档 -->
<script setup lang="ts"></script>
<template> <template>
<div class="app-container h-full"> <div class="app-container">
<iframe <iframe
id="iframe" id="apidocIframe"
src="https://www.apifox.cn/apidoc/shared-195e783f-4d85-4235-a038-eec696de4ea5" src="https://www.apifox.cn/apidoc/shared-195e783f-4d85-4235-a038-eec696de4ea5"
style="height: calc(100vh - 97px)"
width="100%" width="100%"
frameborder="0" frameborder="0"
></iframe> ></iframe>
</div> </div>
</template> </template>
<style lang="scss" scoped>
#apidocIframe {
height: calc(100vh - 100px);
}
.hasTagsView {
#apidocIframe {
height: calc(100vh - 140px);
}
}
</style>