🐛(frontend) fix zIndex table of content
When we open a modal, the table of content is above the modal, which is not the expected behavior. This commit fixes the zIndex of the table of content to be below the modal.
This commit is contained in:
+2
-3
@@ -18,10 +18,9 @@ and this project adheres to
|
||||
### Fixed
|
||||
|
||||
- 🐛(frontend) analytic feature flags problem #1953
|
||||
|
||||
### Fixed
|
||||
|
||||
- 🐛(frontend) fix disabled color on icon Dropdown #1950
|
||||
- 🐛(frontend) fix zIndex table of content #1949
|
||||
|
||||
|
||||
## [v4.6.0] - 2026-03-03
|
||||
|
||||
|
||||
@@ -31,7 +31,7 @@ export const FloatingBar = () => {
|
||||
margin-left: calc(-${base});
|
||||
margin-right: calc(-${base});
|
||||
margin-top: calc(-${base});
|
||||
z-index: 1000;
|
||||
z-index: 10;
|
||||
display: flex;
|
||||
align-items: flex-start;
|
||||
justify-content: flex-start;
|
||||
|
||||
+1
-1
@@ -61,7 +61,7 @@ export const TableContent = () => {
|
||||
$width={!isOpen ? '40px' : '200px'}
|
||||
$height={!isOpen ? '40px' : 'auto'}
|
||||
$maxHeight="calc(50vh - 60px)"
|
||||
$zIndex={2000}
|
||||
$zIndex={1000}
|
||||
$align="center"
|
||||
$padding={isOpen ? 'xs' : '0'}
|
||||
$justify="center"
|
||||
|
||||
Reference in New Issue
Block a user