From 295f4f115c74f7688388841545d2a2ca82061264 Mon Sep 17 00:00:00 2001 From: Ivan Dimitrov Date: Thu, 16 Nov 2023 19:25:23 +0200 Subject: [PATCH] svg hover effect --- flake.lock | 6 +++--- src/app/components/links.tsx | 4 ++-- src/app/contact/page.tsx | 2 +- src/app/globals.css | 4 ++++ 4 files changed, 10 insertions(+), 6 deletions(-) diff --git a/flake.lock b/flake.lock index ffb2cb3..80bbda7 100644 --- a/flake.lock +++ b/flake.lock @@ -145,11 +145,11 @@ }, "nixpkgs": { "locked": { - "lastModified": 1700130609, - "narHash": "sha256-pFtz286KaVHUmBOQztMNSgvT7hxcDe409vnDJxWQH7A=", + "lastModified": 1700154568, + "narHash": "sha256-bUM4bNWysqKM9c/kv4Y7u0/sNCNCQ+1Nwvrpkvi1bPI=", "owner": "NixOS", "repo": "nixpkgs", - "rev": "54f00576aa6139a9d54062d0edc2fb31423f0ffb", + "rev": "577d7a69133459be2cbd7ee52b6965781a66cba4", "type": "github" }, "original": { diff --git a/src/app/components/links.tsx b/src/app/components/links.tsx index a34344f..a049f44 100644 --- a/src/app/components/links.tsx +++ b/src/app/components/links.tsx @@ -6,10 +6,10 @@ const Links = () =>
- + - +
diff --git a/src/app/contact/page.tsx b/src/app/contact/page.tsx index b78fca9..a1df4f6 100644 --- a/src/app/contact/page.tsx +++ b/src/app/contact/page.tsx @@ -6,7 +6,7 @@ const mailto = `mailto:${email}` const Contact = () =>
- +
diff --git a/src/app/globals.css b/src/app/globals.css index 355d937..1efbb59 100644 --- a/src/app/globals.css +++ b/src/app/globals.css @@ -22,3 +22,7 @@ main { @apply flex flex-col w-full h-full bg-slate-950/95 } +svg { + @apply hover:text-sky-400 transition duration-200 ease-in +} +