Fix header z-index to prevent map overlap when scrolling
Increased header z-index from 100 to 1000 to ensure it stays above Leaflet map elements (which typically use z-index 400-600). Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
@@ -86,7 +86,7 @@ body {
|
|||||||
border-bottom: 1px solid var(--border-color);
|
border-bottom: 1px solid var(--border-color);
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
z-index: 100;
|
z-index: 1000;
|
||||||
}
|
}
|
||||||
|
|
||||||
.header-content {
|
.header-content {
|
||||||
|
|||||||
@@ -1,7 +1,7 @@
|
|||||||
.header {
|
.header {
|
||||||
position: sticky;
|
position: sticky;
|
||||||
top: 0;
|
top: 0;
|
||||||
z-index: 100;
|
z-index: 1000;
|
||||||
background: var(--bg-card, white);
|
background: var(--bg-card, white);
|
||||||
border-bottom: 1px solid var(--border-color, #e5dfd5);
|
border-bottom: 1px solid var(--border-color, #e5dfd5);
|
||||||
box-shadow: 0 2px 8px rgba(26, 22, 18, 0.06);
|
box-shadow: 0 2px 8px rgba(26, 22, 18, 0.06);
|
||||||
|
|||||||
Reference in New Issue
Block a user