Skip to content
This repository has been archived by the owner on Dec 18, 2023. It is now read-only.

Commit

Permalink
text changes
Browse files Browse the repository at this point in the history
  • Loading branch information
msramalho committed Dec 6, 2023
1 parent d6440cd commit de65915
Showing 1 changed file with 22 additions and 3 deletions.
25 changes: 22 additions & 3 deletions src/components/Main.vue
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,10 @@
<v-container class="fill-height">
<v-row>
<v-col>
<h3 class="text-center">
Please select a marker on the map to hear the audio from that location.
</h3>
<h2 class="text-center">
<span id="interactive">Interactive Map.</span> Select a marker on the map to hear the audio recorded in
that location.
</h2>
</v-col>
</v-row>
</v-container>
Expand Down Expand Up @@ -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;
}</style>

0 comments on commit de65915

Please sign in to comment.