Skip to content

Commit

Permalink
feat: update design of zoom controls on new map
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseAConcepcion authored and benfurber committed Oct 8, 2024
1 parent 9be7273 commit e54867a
Showing 1 changed file with 24 additions and 3 deletions.
27 changes: 24 additions & 3 deletions src/styles/leaflet.css
Original file line number Diff line number Diff line change
Expand Up @@ -337,16 +337,35 @@ svg.leaflet-image-layer.leaflet-interactive path {

/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom {
font: bold 18px 'Lucida Console', Monaco, monospace;
text-indent: 1px;
}

.leaflet-control-zoom-in {
border-top-left-radius: 10px !important;
border-top-right-radius: 10px !important;
border-bottom: 2px solid #000000 !important;
}

.leaflet-control-zoom-out {
font: bold 18px 'Lucida Console', Monaco, monospace;
text-indent: 1px;
border-bottom-left-radius: 10px !important;
border-bottom-right-radius: 10px !important;
}


.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
font-size: 22px;
}

.leaflet-control-zoom.leaflet-bar.leaflet-control{
border: 2px solid;
border-radius: 10px;
padding: 0px;
border-bottom: 2px solid #000000;
}



/* layers control */

Expand Down Expand Up @@ -650,6 +669,8 @@ svg.leaflet-image-layer.leaflet-interactive path {
border-right-color: #fff;
}



/* Printing */

@media print {
Expand Down

0 comments on commit e54867a

Please sign in to comment.