mirror of
https://github.com/google-map-react/google-map-react.git
synced 2025-12-08 18:26:32 +00:00
* Add isNumber * Update babel, remove lodash deps * develop first commit * Fix zIndex * Add readme * Fix tests * Fix build issues * Update travis build
19 lines
326 B
Sass
19 lines
326 B
Sass
|
|
$markerWidth: 49px
|
|
$markerHeight: 64px
|
|
|
|
$originX: $markerWidth * .5
|
|
$originY: $markerHeight
|
|
|
|
.marker
|
|
background-image: url('./mapIcon.svg')
|
|
position: absolute
|
|
cursor: pointer
|
|
width: $markerWidth
|
|
height: $markerHeight
|
|
top: -$originY
|
|
left: -$originX
|
|
transform-origin: $originX $originY
|
|
margin: 0
|
|
padding: 0
|