fixed user location marker style

This commit is contained in:
muerwre 2018-08-27 17:53:19 +07:00
parent 16d04bd6bb
commit 40993e2dd0

View file

@ -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;
}
}