From 70cddfa558eecd95cd0b8f74d384b5226cc3e7e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E4=BA=8E=E8=82=96=E7=A3=8A?= <18851179580@163.com> Date: Tue, 27 Aug 2024 11:18:37 +0800 Subject: [PATCH] =?UTF-8?q?=E9=80=9A=E7=94=A8=E6=A0=B7=E5=BC=8F=E6=96=B0?= =?UTF-8?q?=E5=A2=9Eoverflow?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/utils/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/utils/index.ts b/src/utils/index.ts index 348f6bad..a595302c 100644 --- a/src/utils/index.ts +++ b/src/utils/index.ts @@ -156,7 +156,7 @@ export function background_computer(new_style: backgroundImgUrlStyle) { * @returns 返回一个字符串,包含了计算后的样式定义,可以被直接应用于组件的样式属性。 */ export function common_styles_computer(new_style: componentsCommonCommonStyle) { - return gradient_computer(new_style) + padding_computer(new_style) + margin_computer(new_style) + radius_computer(new_style) + box_shadow_computer(new_style) + background_computer(new_style); + return gradient_computer(new_style) + padding_computer(new_style) + margin_computer(new_style) + radius_computer(new_style) + box_shadow_computer(new_style) + background_computer(new_style) + `overflow:hidden;`; } /**