From de659154cc0a64312ef3cbdb8ff8178a5d3d771d Mon Sep 17 00:00:00 2001 From: msramalho <19508417+msramalho@users.noreply.github.com> Date: Wed, 6 Dec 2023 17:32:14 +0000 Subject: [PATCH] text changes --- src/components/Main.vue | 25 ++++++++++++++++++++++--- 1 file changed, 22 insertions(+), 3 deletions(-) diff --git a/src/components/Main.vue b/src/components/Main.vue index 6718cbb..87a7a4a 100644 --- a/src/components/Main.vue +++ b/src/components/Main.vue @@ -14,9 +14,10 @@ -

- Please select a marker on the map to hear the audio from that location. -

+

+ Interactive Map. Select a marker on the map to hear the audio recorded in + that location. +

@@ -215,4 +216,22 @@ a { a:hover { color: #01579B; +} + +@keyframes heartbeat { + + 0%, + 100% { + transform: scale(1); + } + + 50% { + transform: scale(1.04); + } +} + +#interactive { + display: inline-block; + animation: heartbeat 1.5s infinite; } +