From b73515ec6ea16a17fa0cff023aa583cbf1db1738 Mon Sep 17 00:00:00 2001 From: Hugo ChunHo Lin Date: Fri, 27 Dec 2024 18:15:10 +0800 Subject: [PATCH] feat(resume): update DownloadCV component to enhance accessibility and remove unused CSS styles --- apps/web/src/components/resume/download-cv.tsx | 7 +++++-- apps/web/src/styles/resume/download-cv.css | 11 ----------- 2 files changed, 5 insertions(+), 13 deletions(-) delete mode 100644 apps/web/src/styles/resume/download-cv.css diff --git a/apps/web/src/components/resume/download-cv.tsx b/apps/web/src/components/resume/download-cv.tsx index a1e97d35..fb0adf8c 100644 --- a/apps/web/src/components/resume/download-cv.tsx +++ b/apps/web/src/components/resume/download-cv.tsx @@ -1,6 +1,5 @@ import { IoCloudDownloadOutline } from "react-icons/io5"; import IconBox from "../icon-box"; -import "@/styles/resume/download-cv.css"; import Link from "next/link"; function DownloadCV() { @@ -8,7 +7,11 @@ function DownloadCV() {
- + Download Hugo's full Curriculum Vitae/Resume (October 2024)
diff --git a/apps/web/src/styles/resume/download-cv.css b/apps/web/src/styles/resume/download-cv.css deleted file mode 100644 index 8c9baf8d..00000000 --- a/apps/web/src/styles/resume/download-cv.css +++ /dev/null @@ -1,11 +0,0 @@ -.hyperlink-highlight { - color: var(--orange-yellow-crayola); - text-decoration: underline; - font-weight: bold; - align-items: center; - gap: 15px; -} - -.hyperlink-highlight:hover { - text-decoration-color: hsla(0, 0%, 84%, 0.7); -} \ No newline at end of file