Skip to content

Commit

Permalink
fix: remove !important
Browse files Browse the repository at this point in the history
  • Loading branch information
JuroUhlar committed Jul 15, 2024
1 parent 000dd9a commit ba18928
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/styles/global-styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -171,13 +171,13 @@ img {
/**
* Leaflet used high z-indexes by default, causing z-index issues, enforce low z-index for it
*/
.leaflet-control {
z-index: 0 !important;
.leaflet-control.leaflet-control {
z-index: 0;
}
.leaflet-pane {
z-index: 0 !important;
.leaflet-pane.leaflet-pane {
z-index: 0;
}
.leaflet-top,
.leaflet-bottom {
z-index: 0 !important;
.leaflet-top.leaflet-top,
.leaflet-bottom.leaflet-bottom {
z-index: 0;
}

0 comments on commit ba18928

Please sign in to comment.