Merge pull request #3 from thofx/lint_fix

修复样式问题
This commit is contained in:
jxxghp
2023-07-22 19:22:50 +08:00
committed by GitHub
8 changed files with 46 additions and 36 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)