添加默认背景

v1.0.0
于肖磊 2024-09-02 10:02:31 +08:00
parent 35570c2da7
commit f6a4fda26c
2 changed files with 13 additions and 1 deletions

View File

@ -70,6 +70,10 @@ div:focus {
outline: none;
}
p {
margin: 0;
}
// form
:root {
--el-font-size-base: 12px;

View File

@ -12,7 +12,15 @@ const defaultUserInfo: DefaultUserInfo = {
html: '',
},
style: {
common_style: defaultCommon,
common_style: {
...defaultCommon,
color_list: [{ color: '#fff', color_percentage: undefined }],
padding: 15,
padding_top: 15,
padding_bottom: 15,
padding_left: 15,
padding_right: 15,
},
},
};