feat: 移动端预览优化 (#326)

* feat: 移动端预览优化

* feat: C端底部logo优化
This commit is contained in:
Ken 2024-07-09 12:12:13 +08:00 committed by sudoooooo
parent ce3508f8be
commit 63e7de4fad
2 changed files with 9 additions and 2 deletions

View File

@ -38,7 +38,14 @@
window.addEventListener('resize', resetRemUnit) window.addEventListener('resize', resetRemUnit)
})() })()
</script> </script>
<style></style> <style>
::-webkit-scrollbar {
display: none;
}
#app {
scrollbar-width: none;
}
</style>
</head> </head>
<body> <body>

View File

@ -13,8 +13,8 @@
:renderData="renderData" :renderData="renderData"
@submit="handleSubmit" @submit="handleSubmit"
></SubmitButton> ></SubmitButton>
<LogoIcon :logo-conf="logoConf" :readonly="true" />
</div> </div>
<LogoIcon :logo-conf="logoConf" :readonly="true" />
</div> </div>
</div> </div>
</template> </template>