style(components): 调整组件z-index值以确保元素可见性
将PointsCollector和TotalPointsDisplay组件的z-index从30提高到999,确保这些元素在其他元素之上可见
Showing
2 changed files
with
2 additions
and
2 deletions
| ... | @@ -452,7 +452,7 @@ const handleGoToPointsRule = () => { | ... | @@ -452,7 +452,7 @@ const handleGoToPointsRule = () => { |
| 452 | flex-direction: column; | 452 | flex-direction: column; |
| 453 | align-items: center; | 453 | align-items: center; |
| 454 | justify-content: center; | 454 | justify-content: center; |
| 455 | - z-index: 30; | 455 | + z-index: 999; |
| 456 | cursor: pointer; | 456 | cursor: pointer; |
| 457 | } | 457 | } |
| 458 | 458 | ... | ... |
| ... | @@ -139,7 +139,7 @@ const handleGoToPointsRule = () => { | ... | @@ -139,7 +139,7 @@ const handleGoToPointsRule = () => { |
| 139 | flex-direction: column; | 139 | flex-direction: column; |
| 140 | align-items: center; | 140 | align-items: center; |
| 141 | justify-content: center; | 141 | justify-content: center; |
| 142 | - z-index: 30; | 142 | + z-index: 999; |
| 143 | cursor: pointer; | 143 | cursor: pointer; |
| 144 | } | 144 | } |
| 145 | 145 | ... | ... |
-
Please register or login to post a comment