File tree 2 files changed +9
-1
lines changed
2 files changed +9
-1
lines changed Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ export default function AboutPage() {
18
18
< h2 className = "mt-10 text-3xl font-extrabold" > CSESoc</ h2 >
19
19
< p className = "text-[#727B8C] font-medium" > unsw-computer-science-engineering-society</ p >
20
20
< a href = "https://www.facebook.com/csesoc/" target = "_blank" >
21
- < button className = "bg-[#444F6F] w-full my-5 py-2 rounded" > Follow</ button >
21
+ < button className = "bg-[#444F6F] w-full my-5 py-2 rounded hover-animate " > Follow</ button >
22
22
</ a >
23
23
< p >
24
24
CSESoc is the principal representative body for UNSW computing students.
Original file line number Diff line number Diff line change @@ -21,3 +21,11 @@ body {
21
21
.animate-blink {
22
22
animation : blink 1s step-end infinite;
23
23
}
24
+
25
+ .hover-animate {
26
+ transition : transform 0.3s ease;
27
+ }
28
+
29
+ .hover-animate : hover {
30
+ transform : scale (1.01 );
31
+ }
You can’t perform that action at this time.
0 commit comments