修改关键字的高度

v1.3.0
于肖磊 2025-03-21 18:07:24 +08:00
parent 84b68e0cce
commit df272fd22b
1 changed files with 1 additions and 1 deletions

View File

@ -242,7 +242,7 @@ const keyword_style = computed(() => {
})
const keyword_img_style = computed(() => {
const style = new_style.value.activity_main?.keywords_style || {};
return `${ padding_computer(style.font_padding) } ${ background_computer(style) }font-weight:${style.font_typeface}; font-size: ${style.font_size}px;color: ${style.font_color};`;
return `${ padding_computer(style.font_padding) } ${ background_computer(style) }font-weight:${style.font_typeface}; font-size: ${style.font_size}px;line-height: 1.5;color: ${style.font_color};`;
})
//
const content_style = computed(() => padding_computer(new_style.value.activity_main.activity_main_right_content));