Commit cf5306d4 authored by chenshouchao's avatar chenshouchao

Merge branch 'feat-20220920-taskDetails' into 'release'

fix: 解决报错

See merge request !113
parents 6c59d0cd 4a3681bb
...@@ -22,7 +22,6 @@ const theme = createTheme({ ...@@ -22,7 +22,6 @@ const theme = createTheme({
backgroundColor: "rgba(7, 19, 38, .8)", backgroundColor: "rgba(7, 19, 38, .8)",
padding:'8px 16px', padding:'8px 16px',
color: "#fff", color: "#fff",
padding: "0px",
}, },
arrow: { arrow: {
"&:before": { "&:before": {
...@@ -42,7 +41,12 @@ const MyTooltip = (props: IMyTooltipProps) => { ...@@ -42,7 +41,12 @@ const MyTooltip = (props: IMyTooltipProps) => {
if (title) { if (title) {
return ( return (
<div <div
style={{ maxHeight: "36vh", overflow: "overlay", padding: "4px 8px" }} style={{
maxHeight: "36vh",
overflow: "overlay",
padding: "4px 16px",
margin: "0px -8px",
}}
> >
{title} {title}
</div> </div>
......
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