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 { .location-marker {
width: 0; width: 20px;
height: 0; height: 3px;
margin-left: -20px; margin-left: -10px;
margin-top: -20px; margin-top: -2px;
outline: none; outline: none;
z-index: 10001; 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 { &:before {
content: ' '; content: ' ';
display: block; display: block;
width: 8px; width: 3px;
height: 8px; height: 20px;
border-radius: 8px; background: @blue_secondary;
box-shadow: 0 0 0 4px @blue_secondary; left: 9px;
top: -8px;
position: absolute; position: absolute;
left: 16px;
top: 16px;
background: @blue_primary;
} }
} }