From b92203d8f245890f3fc11037924fba02b76b8a84 Mon Sep 17 00:00:00 2001 From: Anhgelus Morhtuuzh Date: Sun, 10 Nov 2024 01:03:25 +0100 Subject: [PATCH] feat(link): smoother animation --- scss/main.scss | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/scss/main.scss b/scss/main.scss index ca803b2..0c43680 100644 --- a/scss/main.scss +++ b/scss/main.scss @@ -111,8 +111,10 @@ h3 { width: 33%; border-radius: 16px; background: var(--background); + transition: .2s; &:hover { background: var(--background-hover); + transition: .2s; } } & a { @@ -122,8 +124,10 @@ h3 { text-align: center; padding: 1em; width: 100%; + transition: .2s; &:hover { color: var(--text-color-hover); + transition: .2s; } } }