版本信息:Node: v18.17.0 Tools: 0.6.6 Ray: 1.5.20
Code: Select all
依赖版本- @ray-js/ray:"^1.5.20",, @ray-js/panel-sdk :"^1.12.0", "@ray-js/components-ty-actionsheet": "^0.0.26",
- 相关代码:
actionsheet中header,content,foot三个部分的样式修改如下
Code: Select all
const { modal: modal1 } = ActionSheet.useActionSheet({
footerClassName:styles.actionSheet1,
headerClassName :styles.actionSheet2,
contentClassName:styles.actionSheet3,
});
样式代码
Code: Select all
.actionSheet1 {
margin: 0;
border: 0;
background-color: red;
border-radius: 100rpx;
}
.actionSheet2 {
margin: 0;
border: 0;
background-color: yellow;
border-radius: 100rpx;
}
.actionSheet3 {
margin: 0;
border: 0;
background-color:blue;
border-radius: 100rpx;
}
- 问题描述
1:其中header,content,footer无法修改背景颜色。
2:footder的margin,border无法得到正确的修改
当footer的margin,border设置为零的时候 ,实际margin是34,border为8.
当footer的margin,border设置为二十的时候。margin得到了修改,但是border依然是8