Skip to content

Commit

Permalink
style: add border-radius to map iframe
Browse files Browse the repository at this point in the history
(cherry picked from commit 66259a6)
  • Loading branch information
ruchamahabal authored and mergify[bot] committed May 29, 2024
1 parent 1132f91 commit 4040acc
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions frontend/src/components/CheckInPanel.vue
Original file line number Diff line number Diff line change
Expand Up @@ -55,16 +55,19 @@
{{ locationStatus }}
</span>

<iframe
width="370"
height="170"
frameborder="1"
scrolling="no"
marginheight="0"
marginwidth="0"
:src="`https://maps.google.com/maps?q=${latitude},${longitude}&hl=en&z=15&amp;output=embed`"
>
</iframe>
<div class="rounded border-4 translate-z-0 block overflow-hidden w-350 h-170">
<iframe
width="350"
height="170"
frameborder="0"
scrolling="no"
marginheight="0"
marginwidth="0"
style="border:0"
:src="`https://maps.google.com/maps?q=${latitude},${longitude}&hl=en&z=15&amp;output=embed`"
>
</iframe>
</div>

<Button
class="mt-4 mb-1 drop-shadow-sm py-5 text-base"
Expand Down

0 comments on commit 4040acc

Please sign in to comment.