Commit 8308dc75 authored by 李腾's avatar 李腾

fix: 修改地址提醒样式

parent b2ab6f18
...@@ -193,7 +193,7 @@ const TableList = props => { ...@@ -193,7 +193,7 @@ const TableList = props => {
// addressData = updateAddressList.pop(); // addressData = updateAddressList.pop();
// } // }
const content = () => ( const content = () => (
<div style={{ maxHeight: '300px', overflow: 'auto' }}> <div className={style['popover-notice-box']}>
{updateAddressList?.map(item => ( {updateAddressList?.map(item => (
<PopoverNotice time={item?.time} content={item?.content} /> <PopoverNotice time={item?.time} content={item?.content} />
))} ))}
......
...@@ -97,6 +97,12 @@ ...@@ -97,6 +97,12 @@
cursor: pointer; cursor: pointer;
} }
.popover-notice-box {
max-height: 300px;
margin-right: -15px;
padding-right: 15px;
overflow: auto;
}
.popover-notice { .popover-notice {
max-width: 400px; max-width: 400px;
line-height: 32px; line-height: 32px;
......
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