Commit b2ab6f18 authored by 李腾's avatar 李腾

fix: 修改地址提醒样式

parent 64adc16c
......@@ -192,10 +192,13 @@ const TableList = props => {
// if (updateAddressList) {
// addressData = updateAddressList.pop();
// }
const content = () =>
updateAddressList?.map(item => (
<PopoverNotice time={item?.time} content={item?.content} />
));
const content = () => (
<div style={{ maxHeight: '300px', overflow: 'auto' }}>
{updateAddressList?.map(item => (
<PopoverNotice time={item?.time} content={item?.content} />
))}
</div>
);
return (
<div className={style['notice-btn']}>
{updateAddressList ? (
......
......@@ -98,6 +98,7 @@
}
.popover-notice {
max-width: 300px;
max-width: 400px;
line-height: 32px;
word-break: break-all;
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment