This commit is contained in:
syuilo 2023-05-12 11:46:13 +09:00
parent 6f1994c665
commit d1c2e4aaa0

View file

@ -1,6 +1,6 @@
<template> <template>
<div class="lzyxtsnt"> <div>
<ImgWithBlurhash v-if="image" :hash="image.blurhash" :src="image.url" :alt="image.comment" :title="image.comment" :cover="false"/> <ImgWithBlurhash v-if="image" style="max-width: 100%;" :hash="image.blurhash" :src="image.url" :alt="image.comment" :title="image.comment" :width="image.properties.width" :height="image.properties.height" :cover="false"/>
</div> </div>
</template> </template>
@ -17,11 +17,3 @@ const props = defineProps<{
const image = props.hpml.page.attachedFiles.find(x => x.id === props.block.fileId); const image = props.hpml.page.attachedFiles.find(x => x.id === props.block.fileId);
</script> </script>
<style lang="scss" scoped>
.lzyxtsnt {
> img {
max-width: 100%;
}
}
</style>