Skip to content

Commit

Permalink
💄 修复图标渲染异常
Browse files Browse the repository at this point in the history
  • Loading branch information
BTMuli committed Oct 30, 2024
1 parent a544e6b commit f08668e
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/main/t-itembox.vue
Original file line number Diff line number Diff line change
Expand Up @@ -67,10 +67,10 @@ const height = props.modelValue.height;
const cursor = props.modelValue.clickable ? "pointer" : "default";
const sizeLt = props.modelValue.ltSize;
const sizeRt = props.modelValue.rtSize;
const sizeInner = props.modelValue.innerHeight ?? 0;
const fontSizeInner = sizeInner ? `${sizeInner / 2}px` : "0";
const sizeOuter = props.modelValue.outerHeight ?? 0;
const fontSizeOuter = sizeOuter ? `${sizeOuter / 2}px` : "0";
const sizeInner = `${props.modelValue.innerHeight ?? 0}px`;
const fontSizeInner = props.modelValue.innerHeight ? `${props.modelValue.innerHeight / 2}px` : "0";
const sizeOuter = `${props.modelValue.outerHeight ?? 0}px`;
const fontSizeOuter = props.modelValue.outerHeight ? `${props.modelValue.outerHeight / 2}px` : "0";
const innerBlur = props.modelValue.innerBlur ?? "0";
</script>
<style lang="css" scoped>
Expand Down

0 comments on commit f08668e

Please sign in to comment.