Commit 878adb02 authored by 田翔's avatar 田翔

fix: 图片样式更新

parent e8aabcce
......@@ -15,7 +15,7 @@ const FileView = (props) => {
{
fileList.map(v => {
return (
<img style={{ width: '65px' }} src={`${window.origin}/PandaWorkFlow/WorkFlow/AccountManage/DownloadFiles?filePath=${v}`}></img>
<img className={styles.img} src={`${window.origin}/PandaWorkFlow/WorkFlow/AccountManage/DownloadFiles?filePath=${v}`}></img>
)
})
}
......
.fileView {
display: flex;
.img {
width: 65px;
margin-right: 5px;
transition: all 0.2s ease-in;
&:hover {
cursor: pointer;
transform: scale(1.2);
}
}
}
\ No newline at end of file
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