diff --git a/src/styles/map.less b/src/styles/map.less index 49af5bb..869afa4 100644 --- a/src/styles/map.less +++ b/src/styles/map.less @@ -73,24 +73,34 @@ } .location-marker { - width: 0; - height: 0; - margin-left: -20px; - margin-top: -20px; + width: 20px; + height: 3px; + margin-left: -10px; + margin-top: -2px; outline: none; z-index: 10001; + background: @blue_secondary; + + &:after { + content: ' '; + box-shadow: 0 0 0 3px @blue_secondary; + background: @blue_primary; + border-radius: 8px; + width: 8px; + height: 8px; + position: absolute; + left: 6px; + top: -2px; + } &:before { content: ' '; display: block; - width: 8px; - height: 8px; - border-radius: 8px; - box-shadow: 0 0 0 4px @blue_secondary; + width: 3px; + height: 20px; + background: @blue_secondary; + left: 9px; + top: -8px; position: absolute; - left: 16px; - top: 16px; - background: @blue_primary; } - }