We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 530a1ee commit b9b475fCopy full SHA for b9b475f
1 file changed
src/lib/components/SocialsRow.svelte
@@ -3,6 +3,7 @@
3
href="https://youtube.com/@jumpyjacko"
4
target="_blank"
5
aria-label="Youtube link to jumpyjacko's channel"
6
+ class="hover-expand"
7
>
8
<svg
9
xmlns="http://www.w3.org/2000/svg"
@@ -19,6 +20,7 @@
19
20
href="https://github.com/jumpyjacko"
21
22
aria-label="Github link to jumpyjacko's profile"
23
24
25
26
@@ -32,3 +34,12 @@
32
34
33
35
</a>
36
</div>
37
+
38
+<style>
39
+ .hover-expand {
40
+ transition: all 0.5s;
41
+ }
42
+ .hover-expand:hover {
43
+ scale: 110%;
44
45
+</style>
0 commit comments