Skip to content

Commit

Permalink
Merge pull request #233 from eparadise/location-icon
Browse files Browse the repository at this point in the history
Fixing location icon on small devices
  • Loading branch information
readingdancer authored Jun 3, 2020
2 parents 6591fa5 + d7ffc20 commit 68969ec
Showing 1 changed file with 14 additions and 4 deletions.
18 changes: 14 additions & 4 deletions covid-19-support/src/components/ResourceMap.vue
Original file line number Diff line number Diff line change
Expand Up @@ -393,17 +393,27 @@ div.markeropen svg path {
}
.user-location-button {
bottom: 68px !important;
right: 2px !important;
@media (min-width: 768px) {
right: 0px !important;
}
}
.user-location-link {
border-radius: 4px;
border-radius: 2.5px;
background-position: 50% 50%;
background-repeat: no-repeat;
display: block;
background-color: $white;
box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
width: 26px;
height: 26px;
line-height: 26px;
width: 30px;
height: 30px;
line-height: 30px;
@media (min-width: 768px) {
width: 26px;
height: 26px;
line-height: 26px;
border-radius: 4px;
}
text-align: center;
color: #000 !important;
&:hover {
Expand Down

0 comments on commit 68969ec

Please sign in to comment.