Skip to content

Commit 8339f35

Browse files
authored
Fix CSS control border radius (patch)
Fix for missing border radiuses
2 parents 4a08abb + fec5ccb commit 8339f35

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/css/controls.css

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,15 @@
2424
.leaflet-pm-toolbar
2525
.button-container:last-child
2626
a.leaflet-buttons-control-button {
27-
border-radius: 0 0 2px 2px;
27+
border-bottom-left-radius: 2px;
28+
border-bottom-right-radius: 2px;
2829
}
2930

3031
.leaflet-pm-toolbar
3132
.button-container:first-child
3233
a.leaflet-buttons-control-button {
33-
border-radius: 2px 2px 0 0;
34+
border-top-left-radius: 2px;
35+
border-top-right-radius: 2px;
3436
}
3537

3638
.leaflet-pm-toolbar

0 commit comments

Comments
 (0)