diff --git a/frontend/src/pages/about/index.tsx b/frontend/src/pages/about/index.tsx index 63274d6..7fd34cb 100644 --- a/frontend/src/pages/about/index.tsx +++ b/frontend/src/pages/about/index.tsx @@ -18,7 +18,7 @@ export default function AboutPage() {
unsw-computer-science-engineering-society
- +CSESoc is the principal representative body for UNSW computing students. diff --git a/frontend/src/styles/globals.css b/frontend/src/styles/globals.css index c78751a..c96c5a6 100644 --- a/frontend/src/styles/globals.css +++ b/frontend/src/styles/globals.css @@ -21,3 +21,11 @@ body { .animate-blink { animation: blink 1s step-end infinite; } + +.hover-animate { + transition: transform 0.3s ease; +} + +.hover-animate:hover { + transform: scale(1.01); +}