0

web: fix marker icon position

Shoutouts to 14mRh4X0r for finding the right CSS properties that
work for centering the marker icons.

Fixes #1481.
This commit is contained in:
Nicolas F
2018-11-18 09:10:54 +01:00
parent e867221d8e
commit 2918637539
2 changed files with 10 additions and 2 deletions

View File

@@ -173,3 +173,9 @@ div.worldcontrol select {
padding: 0 5px;
color: #333;
}
.ov-marker {
position:relative;
margin-left:-50%;
margin-top:-50%;
}