通用样式新增overflow

v1.0.0
于肖磊 2024-08-27 11:18:37 +08:00
parent 92e04bfe8f
commit 70cddfa558
1 changed files with 1 additions and 1 deletions

View File

@ -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;`;
}
/**