修复样式问题

This commit is contained in:
thofx
2023-07-22 18:46:54 +08:00
parent 4bd9bc4a1f
commit e146adeecc
8 changed files with 31 additions and 17 deletions

View File

@@ -54,17 +54,21 @@ interface Props {
<style lang="scss">
@use '@core/scss/pages/misc.scss';
.misc-wrapper .misc-footer-tree {
position: absolute;
z-index: 1;
inline-size: 15.625rem;
inset-block-end: 3.5rem;
inset-inline-start: 0.375rem;
}
.misc-wrapper {
position: relative;
.misc-wrapper .misc-footer-img {
position: absolute;
inline-size: 100%;
inset-block-end: 0;
.misc-footer-tree {
position: absolute;
z-index: 1;
inline-size: 15.625rem;
inset-block-end: 3.5rem;
inset-inline-start: 0.375rem;
}
.misc-footer-img {
position: absolute;
inline-size: 100%;
inset-block-end: 0;
}
}
</style>

View File

@@ -16,7 +16,7 @@ const props = defineProps({
})
// 提示框
const $toast = useToast()
const $toast = useToast({ position: 'top' })
// 图片加载状态
const isImageLoaded = ref(false)